luasandbox
1.4.0
Generic Lua sandbox for dynamic data analysis
|
#include "lua.h"
Go to the source code of this file.
Macros | |
#define | LUA_FILEHANDLE "FILE*" |
#define | LUA_BASELIBNAME "" |
#define | LUA_COLIBNAME "coroutine" |
#define | LUA_TABLIBNAME "table" |
#define | LUA_IOLIBNAME "io" |
#define | LUA_OSLIBNAME "os" |
#define | LUA_STRLIBNAME "string" |
#define | LUA_MATHLIBNAME "math" |
#define | LUA_DBLIBNAME "debug" |
#define | LUA_LOADLIBNAME "package" |
#define | lua_assert(x) ((void)0) |
Functions | |
LUALIB_API int() | luaopen_base (lua_State *L) |
LUALIB_API int() | luaopen_coroutine (lua_State *L) |
LUALIB_API int() | luaopen_table (lua_State *L) |
LUALIB_API int() | luaopen_io (lua_State *L) |
LUALIB_API int() | luaopen_os (lua_State *L) |
LUALIB_API int() | luaopen_string (lua_State *L) |
LUALIB_API int() | luaopen_math (lua_State *L) |
LUALIB_API int() | luaopen_debug (lua_State *L) |
LUALIB_API int() | luaopen_package (lua_State *L) |
LUALIB_API void() | luaL_openlibs (lua_State *L) |
LUALIB_API void() luaL_openlibs | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_base | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_coroutine | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_debug | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_io | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_math | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_os | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_package | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_string | ( | lua_State * | L | ) |
LUALIB_API int() luaopen_table | ( | lua_State * | L | ) |