- luaL_addchar
void luaL_addchar(luaL_Buffer* B, char c)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_addsize
void luaL_addsize(luaL_Buffer* B, size_t s)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_argcheck
void luaL_argcheck(lua_State* L, bool cond, int arg, const(char)* extramsg)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_checkint
int luaL_checkint(lua_State* L, int arg)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_checklong
c_long luaL_checklong(lua_State* L, int arg)
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 arg)
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
bool luaL_dofile(lua_State* L, const(char)* filename)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_dostring
bool luaL_dostring(lua_State* L, const(char)* str)
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)* tname)
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)* buff, size_t sz, const(char)* name)
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)* filename)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_newlib
void luaL_newlib(lua_State* L, const(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 arg, int d)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_optlong
c_long luaL_optlong(lua_State* L, int arg, int 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 arg, const(char)* d)
Undocumented in source. Be warned that the author may not have intended to support it.
- luaL_prepbuffer
char* luaL_prepbuffer(luaL_Buffer* B)
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 n, int r)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_equal
int lua_equal(lua_State* L, int idx1, int idx2)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_getgccount
int lua_getgccount(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_getregistry
void lua_getregistry(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isboolean
bool lua_isboolean(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isfunction
bool lua_isfunction(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_islightuserdata
bool lua_islightuserdata(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isnil
bool lua_isnil(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isnone
bool lua_isnone(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isnoneornil
bool lua_isnoneornil(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_istable
bool lua_istable(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_isthread
bool lua_isthread(lua_State* L, int n)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_lessthan
int lua_lessthan(lua_State* L, int idx1, int idx2)
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 n, int r, int f)
Undocumented in source. Be warned that the author may not have intended to support it.
- lua_pop
void lua_pop(lua_State* L, int n)
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
void lua_pushliteral(lua_State* L, const(char)[] 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 i)
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_upvalueindex
int lua_upvalueindex(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 n)
Undocumented in source. Be warned that the author may not have intended to support it.