From 29e4a0512331a36c1cde22ed26c6ae059fa20757 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Thu, 8 Aug 2013 09:23:03 +0200 Subject: Adding libtommath, libtomcrypt and lcrypt, mainly for the bignum support. --- src/BLua.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/BLua.cc') 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); -- cgit v1.2.3