mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
44b1cb5d96
Create the initial CMake build scripts.
26 lines
517 B
C
26 lines
517 B
C
/*
|
|
see copyright notice in squirrel.h
|
|
*/
|
|
#ifndef _SQUIRRELEX_H_
|
|
#define _SQUIRRELEX_H_
|
|
|
|
#include <squirrel.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef SQMOD_PLUGIN_API
|
|
|
|
SQUIRREL_API SQRESULT sq_throwerrorf(HSQUIRRELVM v,const SQChar *err,...);
|
|
SQUIRREL_API void sq_pushstringf(HSQUIRRELVM v,const SQChar *s,...);
|
|
SQUIRREL_API SQRESULT sq_getnativeclosurepointer(HSQUIRRELVM v,SQInteger idx,SQFUNCTION *f);
|
|
|
|
#endif // SQMOD_PLUGIN_API
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*_SQUIRRELEX_H_*/
|