Esempio n. 1
0
 private static void* __CopyValue(allocator.Internal native)
 {
     var ret = Marshal.AllocHGlobal(0);
     *(allocator.Internal*) ret = native;
     return ret.ToPointer();
 }
Esempio n. 2
0
 private allocator(allocator.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
Esempio n. 3
0
 public static allocator __CreateInstance(allocator.Internal native, bool skipVTables = false)
 {
     return new allocator(native, skipVTables);
 }