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

            handle = new HandleRef(this, h);
        }
Esempio n. 3
0
 public TorrentStatus(IntPtr h)
 {
     handle = new HandleRef(this, h);
 }
Esempio n. 4
0
 public static extern void TorrentStatus_Destroy(TorrentStatusHandle handle);