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