|
static int | LuaGC (LuaState luaState, GCOptions what, int data) |
|
static string | LuaTypeName (LuaState luaState, LuaTypes type) |
|
static string | LuaLTypeName (LuaState luaState, int stackPos) |
|
static void | LuaLError (LuaState luaState, string message) |
|
static void | LuaLWhere (LuaState luaState, int level) |
|
static LuaState | LuaLNewState () |
|
static void | LuaLOpenLibs (LuaState luaState) |
|
static int | LuaLLoadString (LuaState luaState, string chunk) |
|
static int | LuaLLoadString (LuaState luaState, byte[] chunk) |
|
static int | LuaLDoString (LuaState luaState, string chunk) |
|
static int | LuaLDoString (LuaState luaState, byte[] chunk) |
|
static void | LuaCreateTable (LuaState luaState, int narr, int nrec) |
|
static void | LuaNewTable (LuaState luaState) |
|
static int | LuaLDoFile (LuaState luaState, string fileName) |
|
static void | LuaGetGlobal (LuaState luaState, string name) |
|
static void | LuaSetGlobal (LuaState luaState, string name) |
|
static void | LuaSetTop (LuaState luaState, int newTop) |
|
static void | LuaPop (LuaState luaState, int amount) |
|
static void | LuaInsert (LuaState luaState, int newTop) |
|
static void | LuaRemove (LuaState luaState, int index) |
|
static void | LuaGetTable (LuaState luaState, int index) |
|
static void | LuaRawGet (LuaState luaState, int index) |
|
static void | LuaSetTable (LuaState luaState, int index) |
|
static void | LuaRawSet (LuaState luaState, int index) |
|
static void | LuaSetMetatable (LuaState luaState, int objIndex) |
|
static int | LuaGetMetatable (LuaState luaState, int objIndex) |
|
static int | LuaEqual (LuaState luaState, int index1, int index2) |
|
static void | LuaPushValue (LuaState luaState, int index) |
|
static void | LuaReplace (LuaState luaState, int index) |
|
static int | LuaGetTop (LuaState luaState) |
|
static LuaTypes | LuaType (LuaState luaState, int index) |
|
static bool | LuaIsNil (LuaState luaState, int index) |
|
static bool | LuaIsNumber (LuaState luaState, int index) |
|
static bool | LuaIsBoolean (LuaState luaState, int index) |
|
static int | LuaLRef (LuaState luaState, int registryIndex) |
|
static int | LuaRef (LuaState luaState, int lockRef) |
|
static void | LuaRawGetI (LuaState luaState, int tableIndex, int index) |
|
static void | LuaRawSetI (LuaState luaState, int tableIndex, int index) |
|
static object | LuaNewUserData (LuaState luaState, int size) |
|
static object | LuaToUserData (LuaState luaState, int index) |
|
static void | LuaGetRef (LuaState luaState, int reference) |
|
static void | LuaUnref (LuaState luaState, int reference) |
|
static bool | LuaIsString (LuaState luaState, int index) |
|
static bool | LuaIsCFunction (LuaState luaState, int index) |
|
static void | LuaPushNil (LuaState luaState) |
|
static void | LuaPushStdCallCFunction (LuaState luaState, LuaNativeFunction function) |
|
static int | LuaPCall (LuaState luaState, int nArgs, int nResults, int errfunc) |
|
static LuaNativeFunction | LuaToCFunction (LuaState luaState, int index) |
|
static double | LuaToNumber (LuaState luaState, int index) |
|
static bool | LuaToBoolean (LuaState luaState, int index) |
|
static string | LuaToString (LuaState luaState, int index) |
|
static void | LuaAtPanic (LuaState luaState, LuaNativeFunction panicf) |
|
static void | LuaPushNumber (LuaState luaState, double number) |
|
static void | LuaPushBoolean (LuaState luaState, bool value) |
|
static void | LuaPushString (LuaState luaState, string str) |
|
static int | LuaLNewMetatable (LuaState luaState, string meta) |
|
static void | LuaGetField (LuaState luaState, int stackPos, string meta) |
|
static void | LuaLGetMetatable (LuaState luaState, string meta) |
|
static object | LuaLCheckUData (LuaState luaState, int stackPos, string meta) |
|
static bool | LuaLGetMetafield (LuaState luaState, int stackPos, string field) |
|
static int | LuaLLoadBuffer (LuaState luaState, string buff, string name) |
|
static int | LuaLLoadBuffer (LuaState luaState, byte[] buff, string name) |
|
static int | LuaLLoadFile (LuaState luaState, string filename) |
|
static bool | LuaLCheckMetatable (LuaState luaState, int index) |
|
static int | LuaNetRegistryIndex () |
|
static int | LuaNetToNetObject (LuaState luaState, int index) |
|
static void | LuaNetNewUData (LuaState luaState, int val) |
|
static int | LuaNetRawNetObj (LuaState luaState, int obj) |
|
static int | LuaNetCheckUData (LuaState luaState, int ud, string tname) |
|
static void | LuaError (LuaState luaState) |
|
static bool | LuaCheckStack (LuaState luaState, int extra) |
|
static int | LuaNext (LuaState luaState, int index) |
|
static void | LuaPushLightUserData (LuaState luaState, LuaTag udata) |
|
static LuaTag | LuaNetGetTag () |
|
static void | LuaNetPushGlobalTable (LuaState luaState) |
|
static void | LuaNetPopGlobalTable (LuaState luaState) |
|