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

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