- luaL_checkint
int luaL_checkint(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_checklong
long luaL_checklong(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_checkstring
const(char)* luaL_checkstring(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_checkversion
void luaL_checkversion(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_dofile
int luaL_dofile(lua_State* L, const(char)* fn)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_dostring
int luaL_dostring(lua_State* L, const(char)* s)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_getmetatable
void luaL_getmetatable(lua_State* L, const(char)* n)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_loadbuffer
int luaL_loadbuffer(lua_State* L, const(char)* s, size_t sz, const(char)* n)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_loadfile
int luaL_loadfile(lua_State* L, const(char)* f)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_newlib
void luaL_newlib(lua_State* L, luaL_Reg[] l)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_newlibtable
void luaL_newlibtable(lua_State* L, const(luaL_Reg)[] l)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_optint
int luaL_optint(lua_State* L, int n, lua_Integer d)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_optlong
long luaL_optlong(lua_State* L, int n, lua_Integer d)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_optstring
const(char)* luaL_optstring(lua_State* L, int n, const(char)* d)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_register
void luaL_register(lua_State* L, const(char)* n, const(luaL_Reg)* l)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_typename
const(char)* luaL_typename(lua_State* L, int i)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_call
void lua_call(lua_State* L, int nargs, int nresults)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isboolean
bool lua_isboolean(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isfunction
bool lua_isfunction(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_islightuserdata
bool lua_islightuserdata(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isnil
bool lua_isnil(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isnone
bool lua_isnone(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isnoneornil
bool lua_isnoneornil(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_istable
bool lua_istable(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isthread
bool lua_isthread(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_newtable
void lua_newtable(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_pcall
int lua_pcall(lua_State* L, int nargs, int nresults, int errfunc)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_pop
void lua_pop(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_pushcfunction
void lua_pushcfunction(lua_State* L, lua_CFunction f)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_pushglobaltable
void lua_pushglobaltable(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_pushliteral
const(char)* lua_pushliteral(lua_State* L, string s)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_register
void lua_register(lua_State* L, const(char)* n, lua_CFunction f)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_tointeger
lua_Integer lua_tointeger(lua_State* L, int i)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_tonumber
lua_Number lua_tonumber(lua_State* L, int i)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_tostring
const(char)* lua_tostring(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_tounsigned
lua_Unsigned lua_tounsigned(lua_State* L, int i)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_yield
int lua_yield(lua_State* L, int nresults)
Undocumented in source. Be warned that the author may not have intended to support it.