mirror of https://github.com/PrimeDecomp/prime.git
28 lines
350 B
C
28 lines
350 B
C
|
#ifndef _MODWRAPPER_H_
|
||
|
#define _MODWRAPPER_H_
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void _prolog();
|
||
|
void _epilog();
|
||
|
void _unresolved();
|
||
|
|
||
|
// User functions
|
||
|
void ksNesInitModule(void);
|
||
|
|
||
|
#ifdef __MWERKS__
|
||
|
#define REL_EXPORT __declspec(export)
|
||
|
#else
|
||
|
#define REL_EXPORT
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // _MODWRAPPER_H_
|