Exemplo n.º 1
0
		public static void AddLString(LuaBufferPtr B, string s, int l) {
			LuaLDelegates.luaL_addlstring(B, s, l);
		}
Exemplo n.º 2
0
		public static void AddString(LuaBufferPtr B, string s) {
			LuaLDelegates.luaL_addstring(B, s);
		}
Exemplo n.º 3
0
		public static void BuffInit(LuaStatePtr l, LuaBufferPtr B) {
			LuaLDelegates.luaL_buffinit(l, B);
		}
Exemplo n.º 4
0
		public static sbyte[] PrepBufferSize(LuaBufferPtr B, int sz) {
			sbyte * bytes = LuaLDelegates.luaL_prepbuffsize(B, sz);
			sbyte[] result = new sbyte[sz];
			for (; sz >= 0; --sz) {
				result[sz] = bytes[sz];
			}
			return result;
		}
Exemplo n.º 5
0
 internal extern static sbyte *luaL_prepbuffsize(LuaBufferPtr B, int sz);
Exemplo n.º 6
0
		internal extern static sbyte *luaL_buffinitsize(LuaStatePtr l, LuaBufferPtr B, int sz);
Exemplo n.º 7
0
		internal extern static void luaL_addvalue(LuaBufferPtr B);
Exemplo n.º 8
0
		public static void PushResultSize(LuaBufferPtr B, int sz) {
			LuaLDelegates.luaL_pushresultsize(B, sz);
		}
Exemplo n.º 9
0
		internal extern static sbyte *luaL_prepbuffsize(LuaBufferPtr B, int sz);
Exemplo n.º 10
0
		internal extern static void luaL_addstring(LuaBufferPtr B, [MarshalAs(UnmanagedType.LPStr)] string s);
Exemplo n.º 11
0
		internal extern static void luaL_buffinit(LuaStatePtr l, LuaBufferPtr B);
Exemplo n.º 12
0
 internal extern static void luaL_addvalue(LuaBufferPtr B);
Exemplo n.º 13
0
 internal extern static void luaL_addstring(LuaBufferPtr B, [MarshalAs(UnmanagedType.LPStr)] string s);
Exemplo n.º 14
0
		public static void AddValue(LuaBufferPtr B) {
			LuaLDelegates.luaL_addvalue(B);
		}
Exemplo n.º 15
0
		internal extern static void luaL_pushresult(LuaBufferPtr B);
Exemplo n.º 16
0
		public static void PushResult(LuaBufferPtr B) {
			LuaLDelegates.luaL_pushresult(B);
		}
Exemplo n.º 17
0
		internal extern static void luaL_pushresultsize(LuaBufferPtr B, int sz);
Exemplo n.º 18
0
		public static sbyte[] BuffInitSize(LuaStatePtr l, LuaBufferPtr B, int sz) {
			sbyte * bytes = LuaLDelegates.luaL_buffinitsize(l, B, sz);
			sbyte[] result = new sbyte[sz];
			for (; sz >= 0; --sz) {
				result[sz] = bytes[sz];
			}
			return result;
		}
Exemplo n.º 19
0
 internal extern static void luaL_buffinit(LuaStatePtr l, LuaBufferPtr B);