1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #ifndef __NS_EEL_ADDFUNCS_H__
- #define __NS_EEL_ADDFUNCS_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct _compileContext;
- typedef void (*NSEEL_PPPROC)(void *data, int data_size, struct _compileContext *userfunc_data);
- void NSEEL_PProc_RAM(void *data, int data_size, struct _compileContext *ctx);
- void NSEEL_PProc_THIS(void *data, int data_size, struct _compileContext *ctx);
- void _asm_generic3parm(void);
- void _asm_generic3parm_end(void);
- void _asm_generic3parm_retd(void);
- void _asm_generic3parm_retd_end(void);
- void _asm_generic2parm(void);
- void _asm_generic2parm_end(void);
- void _asm_generic2parm_retd(void);
- void _asm_generic2parm_retd_end(void);
- void _asm_generic1parm(void);
- void _asm_generic1parm_end(void);
- void _asm_generic1parm_retd(void);
- void _asm_generic1parm_retd_end(void);
- void _asm_megabuf(void);
- void _asm_megabuf_end(void);
- #if EEL_F_SIZE == 4
- #define EEL_F_SSTR "4"
- #define EEL_F_SUFFIX "s"
- #else
- #define EEL_F_SSTR "8"
- #define EEL_F_SUFFIX "l"
- #endif
- #ifdef _MSC_VER
- #define NSEEL_CGEN_CALL __cdecl
- #else
- #define NSEEL_CGEN_CALL
- #endif
- #ifdef __cplusplus
- };
- #endif
- #endif
|