diff options
author | pixel <pixel> | 2003-11-20 09:07:24 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-11-20 09:07:24 +0000 |
commit | e995cb29c210d8d946c889a6a65dd0e90403e767 (patch) | |
tree | 29cace8a313c1e9d9968f54350ff810cb65da99f /include/BLua.h | |
parent | ebac9899fe2ef7a672d3728071b3a4179ec5a2df (diff) |
Added LUA "compiler" to the code.
Diffstat (limited to 'include/BLua.h')
-rw-r--r-- | include/BLua.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/BLua.h b/include/BLua.h index fb62b14..19c65c4 100644 --- a/include/BLua.h +++ b/include/BLua.h @@ -48,7 +48,8 @@ class Lua : public Base { lua_CFunction tocfunction(int = -1);
void * touserdata(int = -1);
Lua * tothread(int = -1);
- void load(Handle *) throw (GeneralException) ;
+ void load(Handle *, bool = true) throw (GeneralException);
+ void dump(Handle *, bool = true);
Lua * thread();
static Lua * find(lua_State *) throw (GeneralException);
void showerror();
|