コード例 #1
0
ファイル: Std.cs プロジェクト: ddobrev/CppSharp
 private static void* __CopyValue(Allocator.__Internal native)
 {
     var ret = Marshal.AllocHGlobal(0);
     *(Allocator.__Internal*) ret = native;
     return ret.ToPointer();
 }
コード例 #2
0
ファイル: Std.cs プロジェクト: ddobrev/CppSharp
 private Allocator(Allocator.__Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
コード例 #3
0
ファイル: Std.cs プロジェクト: ddobrev/CppSharp
 public static Allocator __CreateInstance(Allocator.__Internal native, bool skipVTables = false)
 {
     return new Allocator(native, skipVTables);
 }