aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/lauxlib.h b/lauxlib.h
index e0072a43..6238f5ce 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.128 2014/10/29 16:11:17 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.129 2015/11/23 11:29:43 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -20,6 +20,14 @@
20#define LUA_ERRFILE (LUA_ERRERR+1) 20#define LUA_ERRFILE (LUA_ERRERR+1)
21 21
22 22
23/* key, in the registry, for table of loaded modules */
24#define LUA_LOADED_TABLE "_LOADED"
25
26
27/* key, in the registry, for table of preloaded loaders */
28#define LUA_PRELOAD_TABLE "_PRELOAD"
29
30
23typedef struct luaL_Reg { 31typedef struct luaL_Reg {
24 const char *name; 32 const char *name;
25 lua_CFunction func; 33 lua_CFunction func;