summaryrefslogtreecommitdiff
path: root/src/BLua.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/BLua.cc')
-rw-r--r--src/BLua.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/BLua.cc b/src/BLua.cc
index 3d47c72..22252d4 100644
--- a/src/BLua.cc
+++ b/src/BLua.cc
@@ -438,6 +438,16 @@ void Balau::Lua::open_bit() {
while (n < gettop()) pop();
}
+extern "C" {
+int luaopen_lcrypt(lua_State *L);
+}
+
+void Balau::Lua::open_lcrypt() {
+ int n = gettop();
+ luaopen_lcrypt(L);
+ while (n < gettop()) pop();
+}
+
void Balau::Lua::declareFunc(const char * name, lua_CFunction f, int i) {
checkstack(2);
lua_pushstring(L, name);