상속: IDisposable
예제 #1
0
파일: SBEvent.cs 프로젝트: tritao/LLDBSharp
 private static void* __CopyValue(Event.Internal native)
 {
     var ret = Marshal.AllocHGlobal(12);
     LLDB.Event.Internal.cctor_1(ret, new global::System.IntPtr(&native));
     return ret.ToPointer();
 }
예제 #2
0
파일: SBEvent.cs 프로젝트: tritao/LLDBSharp
 private Event(Event.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
예제 #3
0
파일: SBEvent.cs 프로젝트: tritao/LLDBSharp
 public static Event __CreateInstance(Event.Internal native, bool skipVTables = false)
 {
     return new Event(native, skipVTables);
 }