bindbc.lua.v54

Undocumented in source.

Modules

binddynamic
module bindbc.lua.v54.binddynamic
Undocumented in source.
bindstatic
module bindbc.lua.v54.bindstatic
Undocumented in source.
types
module bindbc.lua.v54.types
Undocumented in source.

Public Imports

bindbc.lua.v54.types
public import bindbc.lua.v54.types;
bindbc.lua.v54.bindstatic
public import bindbc.lua.v54.bindstatic;
bindbc.lua.v54.binddynamic
public import bindbc.lua.v54.binddynamic;

Members

Aliases

luaL_pushfail
alias luaL_pushfail = lua_pushnil
Undocumented in source.
lua_objlen
alias lua_objlen = lua_rawlen
Undocumented in source.
lua_strlen
alias lua_strlen = lua_rawlen
Undocumented in source.

Functions

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_argexpected
void luaL_argexpected(lua_State* L, bool cond, int arg, const(char)* tname)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_buffaddr
char* luaL_buffaddr(luaL_Buffer* B)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_bufflen
size_t luaL_bufflen(luaL_Buffer* B)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_buffsub
void luaL_buffsub(luaL_Buffer* B, size_t s)
Undocumented in source. Be warned that the author may not have intended to support it.
luaL_checkint
int luaL_checkint(lua_State* L, int a)
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 a)
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_checkunsigned
lua_Unsigned luaL_checkunsigned(lua_State* L, int a)
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 a, 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 a, 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_optunsigned
lua_Unsigned luaL_optunsigned(lua_State* L, int a, lua_Unsigned 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_getextraspace
void* lua_getextraspace(lua_State* L)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_getuservalue
int lua_getuservalue(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_insert
void lua_insert(lua_State* L, int idx)
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_newuserdata
void* lua_newuserdata(lua_State* L, size_t s)
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_pushunsigned
void lua_pushunsigned(lua_State* L, lua_Unsigned n)
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_remove
void lua_remove(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_replace
void lua_replace(lua_State* L, int idx)
Undocumented in source. Be warned that the author may not have intended to support it.
lua_setuservalue
int lua_setuservalue(lua_State* L, int idx)
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_tounsignedx
lua_Unsigned lua_tounsignedx(lua_State* L, int i, int* pi)
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.

Meta