LuaInterface.LuaDLL.lua_touserdata C# (CSharp) Méthode

lua_touserdata() private méthode

private lua_touserdata ( IntPtr luaState, int index ) : IntPtr
luaState IntPtr
index int
Résultat IntPtr
        public static extern IntPtr lua_touserdata(IntPtr luaState, int index);

Usage Example

 public IntPtr LuaToUserData(int idx)
 {
     return(LuaDLL.lua_touserdata(this.L, idx));
 }
All Usage Examples Of LuaInterface.LuaDLL::lua_touserdata
LuaDLL