ImageMagick.MagickMemory.NativeMagickMemory.Relinquish C# (CSharp) Method

Relinquish() public static method

public static Relinquish ( IntPtr value ) : void
value System.IntPtr
return void
      public static void Relinquish(IntPtr value)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickMemory_Relinquish(value);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickMemory_Relinquish(value);
        #endif
      }
    }
MagickMemory.NativeMagickMemory