LuaInterface.LuaDLL.lua_xmove C# (CSharp) Method

lua_xmove() private method

private lua_xmove ( IntPtr from, IntPtr to, int n ) : void
from IntPtr
to IntPtr
n int
return void
        public static extern void lua_xmove(IntPtr from, IntPtr to, int n);

Usage Example

示例#1
0
 public void LuaXMove(IntPtr to, int n)
 {
     LuaDLL.lua_xmove(L, to, n);
 }
LuaDLL