summaryrefslogtreecommitdiff
path: root/includes/BLua.h
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2013-08-08 09:23:03 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2013-08-08 09:23:03 +0200
commit29e4a0512331a36c1cde22ed26c6ae059fa20757 (patch)
tree09496f029124fe4fc61aa7e014df50349128ced3 /includes/BLua.h
parent8fd11c9821c23c69da76158c87acdefe2ae9586f (diff)
Adding libtommath, libtomcrypt and lcrypt, mainly for the bignum support.
Diffstat (limited to 'includes/BLua.h')
-rw-r--r--includes/BLua.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/BLua.h b/includes/BLua.h
index 354fb25..1bcf763 100644
--- a/includes/BLua.h
+++ b/includes/BLua.h
@@ -114,6 +114,7 @@ class Lua {
void open_bit();
void open_jit();
void open_ffi();
+ void open_lcrypt();
int wrap_open(openlualib_t open) { int n = gettop(); int r = open(L); while (n < gettop()) pop(); return r; }
void openlib(const String & libname, const struct luaL_reg *l, int nup) { luaL_openlib(L, libname.to_charp(), l, nup); }