Exemple #1
0
        private static void *__CopyValue(Allocator.__Internal native)
        {
            var ret = Marshal.AllocHGlobal(0);

            *(Allocator.__Internal *)ret = native;
            return(ret.ToPointer());
        }
Exemple #2
0
 private Allocator(Allocator.__Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance           = true;
     NativeToManagedMap[__Instance] = this;
 }
Exemple #3
0
 internal static Allocator __CreateInstance(Allocator.__Internal native, bool skipVTables = false)
 {
     return(new Allocator(native, skipVTables));
 }