dlua.lua

Undocumented in source.

Members

Aliases

lua_Alloc
alias lua_Alloc = void* function(void* ud, void* ptr, size_t osize, size_t nsize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_CFunction
alias lua_CFunction = int function(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Hook
alias lua_Hook = void function(lua_State* L, lua_Debug* ar)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Integer
alias lua_Integer = long
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_KContext
alias lua_KContext = c_long
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_KFunction
alias lua_KFunction = int function(lua_State* L, int status, lua_KContext ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Number
alias lua_Number = double
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Reader
alias lua_Reader = const(char)* function(lua_State* L, void* ud, size_t* sz)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Unsigned
alias lua_Unsigned = ulong
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_Writer
alias lua_Writer = int function(lua_State* L, const(void)* p, size_t sz, void* ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

lua_absindex
int lua_absindex(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_arith
void lua_arith(lua_State* L, int op)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_atpanic
lua_CFunction lua_atpanic(lua_State* L, lua_CFunction panicf)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_call
auto lua_call(T0 L, T1 n, T2 r)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_callk
void lua_callk(lua_State* L, int nargs, int nresults, lua_KContext ctx, lua_KFunction k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_checkstack
int lua_checkstack(lua_State* L, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_close
void lua_close(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_compare
int lua_compare(lua_State* L, int idx1, int idx2, int op)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_concat
void lua_concat(lua_State* L, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_copy
void lua_copy(lua_State* L, int fromidx, int toidx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_createtable
void lua_createtable(lua_State* L, int narr, int nrec)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_dump
int lua_dump(lua_State* L, lua_Writer writer, void* data, int strip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_error
int lua_error(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gc
int lua_gc(lua_State* L, int what, int data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getallocf
lua_Alloc lua_getallocf(lua_State* L, void** ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getextraspace
auto lua_getextraspace(T L)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_getfield
int lua_getfield(lua_State* L, int idx, const(char)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getglobal
int lua_getglobal(lua_State* L, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gethook
lua_Hook lua_gethook(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gethookcount
int lua_gethookcount(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gethookmask
int lua_gethookmask(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_geti
int lua_geti(lua_State* L, int idx, lua_Integer n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getinfo
int lua_getinfo(lua_State* L, const(char)* what, lua_Debug* ar)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getlocal
const(char)* lua_getlocal(lua_State* L, const(lua_Debug)* ar, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getmetatable
int lua_getmetatable(lua_State* L, int objindex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getstack
int lua_getstack(lua_State* L, int level, lua_Debug* ar)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gettable
int lua_gettable(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_gettop
int lua_gettop(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getupvalue
const(char)* lua_getupvalue(lua_State* L, int funcindex, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_getuservalue
int lua_getuservalue(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_insert
auto lua_insert(T0 L, T1 idx)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isboolean
auto lua_isboolean(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_iscfunction
int lua_iscfunction(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_isfunction
auto lua_isfunction(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isinteger
int lua_isinteger(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_islightuserdata
auto lua_islightuserdata(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isnil
auto lua_isnil(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isnone
auto lua_isnone(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isnoneornil
auto lua_isnoneornil(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isnumber
int lua_isnumber(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_isstring
int lua_isstring(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_istable
auto lua_istable(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isthread
auto lua_isthread(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_isuserdata
int lua_isuserdata(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_isyieldable
int lua_isyieldable(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_len
void lua_len(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_load
int lua_load(lua_State* L, lua_Reader reader, void* dt, const(char)* chunkname, const(char)* mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_newstate
lua_State* lua_newstate(lua_Alloc f, void* ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_newtable
auto lua_newtable(T L)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_newthread
lua_State* lua_newthread(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_newuserdata
void* lua_newuserdata(lua_State* L, size_t sz)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_next
int lua_next(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pcall
auto lua_pcall(T0 L, T1 n, T2 r, T3 f)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_pcallk
int lua_pcallk(lua_State* L, int nargs, int nresults, int errfunc, lua_KContext ctx, lua_KFunction k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pop
auto lua_pop(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_pushboolean
void lua_pushboolean(lua_State* L, int b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushcclosure
void lua_pushcclosure(lua_State* L, lua_CFunction fn, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushcfunction
auto lua_pushcfunction(T0 L, T1 f)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_pushfstring
const(char)* lua_pushfstring(lua_State* L, const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushglobaltable
auto lua_pushglobaltable(T L)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_pushinteger
void lua_pushinteger(lua_State* L, lua_Integer n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushlightuserdata
void lua_pushlightuserdata(lua_State* L, void* p)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushlstring
const(char)* lua_pushlstring(lua_State* L, const(char)* s, size_t len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushnil
void lua_pushnil(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushnumber
void lua_pushnumber(lua_State* L, lua_Number n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushstring
const(char)* lua_pushstring(lua_State* L, const(char)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushthread
int lua_pushthread(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushvalue
void lua_pushvalue(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_pushvfstring
const(char)* lua_pushvfstring(lua_State* L, const(char)* fmt, va_list argp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawequal
int lua_rawequal(lua_State* L, int idx1, int idx2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawget
int lua_rawget(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawgeti
int lua_rawgeti(lua_State* L, int idx, lua_Integer n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawgetp
int lua_rawgetp(lua_State* L, int idx, const(void)* p)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawlen
size_t lua_rawlen(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawset
void lua_rawset(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawseti
void lua_rawseti(lua_State* L, int idx, lua_Integer n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rawsetp
void lua_rawsetp(lua_State* L, int idx, const(void)* p)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_resume
int lua_resume(lua_State* L, lua_State* from, int narg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_rotate
void lua_rotate(lua_State* L, int idx, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setallocf
void lua_setallocf(lua_State* L, lua_Alloc f, void* ud)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setfield
void lua_setfield(lua_State* L, int idx, const(char)* k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setglobal
void lua_setglobal(lua_State* L, const(char)* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_sethook
void lua_sethook(lua_State* L, lua_Hook func, int mask, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_seti
void lua_seti(lua_State* L, int idx, lua_Integer n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setlocal
const(char)* lua_setlocal(lua_State* L, const(lua_Debug)* ar, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setmetatable
int lua_setmetatable(lua_State* L, int objindex)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_settable
void lua_settable(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_settop
void lua_settop(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setupvalue
const(char)* lua_setupvalue(lua_State* L, int funcindex, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_setuservalue
void lua_setuservalue(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_status
int lua_status(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_stringtonumber
size_t lua_stringtonumber(lua_State* L, const(char)* s)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_toboolean
int lua_toboolean(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tocfunction
lua_CFunction lua_tocfunction(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tointeger
auto lua_tointeger(T0 L, T1 i)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_tointegerx
lua_Integer lua_tointegerx(lua_State* L, int idx, int* isnum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tolstring
const(char)* lua_tolstring(lua_State* L, int idx, size_t* len)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tonumber
auto lua_tonumber(T0 L, T1 i)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_tonumberx
lua_Number lua_tonumberx(lua_State* L, int idx, int* isnum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_topointer
const(void)* lua_topointer(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_tostring
auto lua_tostring(T0 L, T1 i)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_tothread
lua_State* lua_tothread(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_touserdata
void* lua_touserdata(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_type
int lua_type(lua_State* L, int idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_typename
const(char)* lua_typename(lua_State* L, int tp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_upvalueid
void* lua_upvalueid(lua_State* L, int fidx, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_upvalueindex
auto lua_upvalueindex(T i)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_upvaluejoin
void lua_upvaluejoin(lua_State* L, int fidx1, int n1, int fidx2, int n2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_version
const(lua_Number)* lua_version(lua_State* L)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_xmove
void lua_xmove(lua_State* from, lua_State* to, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_yield
auto lua_yield(T0 L, T1 n)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_yieldk
int lua_yieldk(lua_State* L, int nresults, lua_KContext ctx, lua_KFunction k)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Manifest constants

LUA_AUTHORS
enum LUA_AUTHORS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRERR
enum LUA_ERRERR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRGCMM
enum LUA_ERRGCMM;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRMEM
enum LUA_ERRMEM;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRRUN
enum LUA_ERRRUN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_ERRSYNTAX
enum LUA_ERRSYNTAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCCOLLECT
enum LUA_GCCOLLECT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCCOUNT
enum LUA_GCCOUNT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCCOUNTB
enum LUA_GCCOUNTB;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCISRUNNING
enum LUA_GCISRUNNING;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCRESTART
enum LUA_GCRESTART;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCSETPAUSE
enum LUA_GCSETPAUSE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCSETSTEPMUL
enum LUA_GCSETSTEPMUL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCSTEP
enum LUA_GCSTEP;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_GCSTOP
enum LUA_GCSTOP;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKCALL
enum LUA_HOOKCALL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKCOUNT
enum LUA_HOOKCOUNT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKLINE
enum LUA_HOOKLINE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKRET
enum LUA_HOOKRET;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_HOOKTAILCALL
enum LUA_HOOKTAILCALL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MASKCALL
enum LUA_MASKCALL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MASKCOUNT
enum LUA_MASKCOUNT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MASKLINE
enum LUA_MASKLINE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MASKRET
enum LUA_MASKRET;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MINSTACK
enum LUA_MINSTACK;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_MULTRET
enum LUA_MULTRET;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_NUMTAGS
enum LUA_NUMTAGS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OK
enum LUA_OK;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPADD
enum LUA_OPADD;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPBAND
enum LUA_OPBAND;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPBNOT
enum LUA_OPBNOT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPBOR
enum LUA_OPBOR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPBXOR
enum LUA_OPBXOR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPDIV
enum LUA_OPDIV;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPEQ
enum LUA_OPEQ;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPIDIV
enum LUA_OPIDIV;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPLE
enum LUA_OPLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPLT
enum LUA_OPLT;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPMOD
enum LUA_OPMOD;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPMUL
enum LUA_OPMUL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPPOW
enum LUA_OPPOW;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPSHL
enum LUA_OPSHL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPSHR
enum LUA_OPSHR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPSUB
enum LUA_OPSUB;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_OPUNM
enum LUA_OPUNM;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_REGISTRYINDEX
enum LUA_REGISTRYINDEX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_RIDX_GLOBALS
enum LUA_RIDX_GLOBALS;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_RIDX_LAST
enum LUA_RIDX_LAST;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_RIDX_MAINTHREAD
enum LUA_RIDX_MAINTHREAD;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_SIGNATURE
enum LUA_SIGNATURE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TBOOLEAN
enum LUA_TBOOLEAN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TFUNCTION
enum LUA_TFUNCTION;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TLIGHTUSERDATA
enum LUA_TLIGHTUSERDATA;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TNIL
enum LUA_TNIL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TNONE
enum LUA_TNONE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TNUMBER
enum LUA_TNUMBER;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TSTRING
enum LUA_TSTRING;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TTABLE
enum LUA_TTABLE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TTHREAD
enum LUA_TTHREAD;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_TUSERDATA
enum LUA_TUSERDATA;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_VERSION_MAJOR
enum LUA_VERSION_MAJOR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_VERSION_MINOR
enum LUA_VERSION_MINOR;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_VERSION_NUM
enum LUA_VERSION_NUM;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_VERSION_RELEASE
enum LUA_VERSION_RELEASE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
LUA_YIELD
enum LUA_YIELD;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Static variables

lua_ident
const(char)[] lua_ident;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

lua_Debug
struct lua_Debug
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
lua_State
struct lua_State
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta