chuyiwen_gmsv/include/mylua/mylua.h

54 lines
916 B
C
Raw Permalink Normal View History

2016-12-24 08:45:52 +08:00
#define __MYLUA__H__
#ifdef __MYLUA__H__
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
int myluaload (char *filename);
int remyluaload (char *filename);
int closemyluaload();
void CryptoAllbluesLUA(char *path, int flg, int id);
int dofile (lua_State *L, const char *name);
int docall (lua_State *L, int narg, int clear);
int getArrayInt(lua_State *L, int idx);
LUALIB_API void luaAB_openlibs (lua_State *L);
typedef struct tagMYLua
{
lua_State *lua;
char *luapath;
struct tagMYLua *next;
}MY_Lua;
#endif
//<2F><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>int<6E><74>LUA<55><41><EFBFBD><EFBFBD>
#define LRetInt(L, i) \
{ \
lua_pushinteger(L, i); \
LRet(1); \
}
#define LRet(r) \
{ \
NPC_Lua_SetErrorStr(NULL); \
return r; \
}
#define CheckEx2(L, t, n) \
{ \
if(lua_gettop(L) < (t) || lua_gettop(L) > n) \
{ \
luaL_argerror(L, 1, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"); \
} \
}
//<2F><><EFBFBD><EFBFBD>һ<EFBFBD><D2BB>BOOL<4F><4C>LUA<55><41><EFBFBD><EFBFBD>
#define LRetBool(L, b) \
{ \
lua_pushboolean(L, b); \
LRet(1); \
}