예제 #1
0
 private void CleanUp()
 {
     TorrentStatus_Destroy(handle);
     handle = new HandleRef(this, IntPtr.Zero);
 }
예제 #2
0
        public TorrentStatus()
        {
            IntPtr h = TorrentStatus_Create();

            handle = new HandleRef(this, h);
        }
예제 #3
0
 public TorrentStatus(IntPtr h)
 {
     handle = new HandleRef(this, h);
 }
예제 #4
0
 public static extern void TorrentStatus_Destroy(TorrentStatusHandle handle);