diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-09 21:30:24 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-09 21:30:24 -0800 |
commit | 0a8b9c1a3d054fa95ca76131b7422ee9f25bd4f9 (patch) | |
tree | a995f6deb36524830aab777bfcc381651d723097 /include | |
parent | 15b0e9849e3830eefc6c98aa7d0858981a0318b5 (diff) |
Removing the Lua lock system, and switching to a true Lua C++ inclusion philosophie.
Diffstat (limited to 'include')
-rw-r--r-- | include/BLua.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/include/BLua.h b/include/BLua.h index 2afcdef..49573e3 100644 --- a/include/BLua.h +++ b/include/BLua.h @@ -25,15 +25,10 @@ struct lua_State; extern "C" { - void do_lua_lock(lua_State *); - void do_lua_unlock(lua_State *); -} - -#define lua_lock(L) do_lua_lock(L) -#define lua_unlock(L) do_lua_unlock(L) - #include <lua.h> #include <lauxlib.h> +} + #include <map> #include <Exceptions.h> #include <Handle.h> @@ -147,9 +142,6 @@ class Lua : public Base { void do_break(); - virtual void lock(); - virtual void unlock(); - bool is_protected(); void openlib(const String & libname, const struct luaL_reg *l, int nup); |