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