Exemplo n.º 1
0
 /// <summary>
 /// Release the unmanaged memory associated with this BIF
 /// </summary>
 protected override void DisposeObject()
 {
     if (_sharedPtr != IntPtr.Zero)
     {
         FaceInvoke.cveBIFRelease(ref _sharedPtr);
         _ptr = IntPtr.Zero;
     }
 }
Exemplo n.º 2
0
Arquivo: BIF.cs Projeto: aray2000/TFM
 /// <summary>
 /// Release the unmanaged memory associated with this BIF
 /// </summary>
 protected override void DisposeObject()
 {
     FaceInvoke.cveBIFRelease(ref _ptr);
 }