diff options
author | Mike Pall <mike> | 2012-09-21 16:32:24 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-09-21 16:32:24 +0200 |
commit | 3dceaa9a7422497aab88dac7c58467c101c5f785 (patch) | |
tree | 696564bf8ba4ee3b6a7ffd47cdc8ef1e33d7cde9 /src/lua.h | |
parent | 98f05808fac3b2c439034b9eca55e7e9492e3a9f (diff) | |
download | luajit-3dceaa9a7422497aab88dac7c58467c101c5f785.tar.gz luajit-3dceaa9a7422497aab88dac7c58467c101c5f785.tar.bz2 luajit-3dceaa9a7422497aab88dac7c58467c101c5f785.zip |
Move load/dump functions to lj_load.c. Add load modes.
Diffstat (limited to 'src/lua.h')
-rw-r--r-- | src/lua.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -344,6 +344,8 @@ LUA_API int lua_gethookcount (lua_State *L); | |||
344 | /* From Lua 5.2. */ | 344 | /* From Lua 5.2. */ |
345 | LUA_API void *lua_upvalueid (lua_State *L, int idx, int n); | 345 | LUA_API void *lua_upvalueid (lua_State *L, int idx, int n); |
346 | LUA_API void lua_upvaluejoin (lua_State *L, int idx1, int n1, int idx2, int n2); | 346 | LUA_API void lua_upvaluejoin (lua_State *L, int idx1, int n1, int idx2, int n2); |
347 | LUA_API int lua_loadx (lua_State *L, lua_Reader reader, void *dt, | ||
348 | const char *chunkname, const char *mode); | ||
347 | 349 | ||
348 | 350 | ||
349 | struct lua_Debug { | 351 | struct lua_Debug { |