diff options
author | chai <chaifix@163.com> | 2019-01-13 09:36:13 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-01-13 09:36:13 +0800 |
commit | 2fb6b09dcf2ceb09cf021adb4a89f4c1255d5558 (patch) | |
tree | 7d8045be6920b532319f07d27d39bd4a2765044b /Source/3rdParty/Lua51/lapi.h | |
parent | 63b5a5fab9e41a2644ab43f23d661dd5f804cf1c (diff) |
+luax
Diffstat (limited to 'Source/3rdParty/Lua51/lapi.h')
-rw-r--r-- | Source/3rdParty/Lua51/lapi.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/3rdParty/Lua51/lapi.h b/Source/3rdParty/Lua51/lapi.h new file mode 100644 index 0000000..2c3fab2 --- /dev/null +++ b/Source/3rdParty/Lua51/lapi.h @@ -0,0 +1,16 @@ +/* +** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $ +** Auxiliary functions from Lua API +** See Copyright Notice in lua.h +*/ + +#ifndef lapi_h +#define lapi_h + + +#include "lobject.h" + + +LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o); + +#endif |