BetterExplorer.UsbEject.Native.SetupDiDestroyDeviceInfoList C# (CSharp) Method

SetupDiDestroyDeviceInfoList() private method

private SetupDiDestroyDeviceInfoList ( IntPtr deviceInfoSet ) : uint
deviceInfoSet System.IntPtr
return uint
		internal static extern uint SetupDiDestroyDeviceInfoList(
			IntPtr deviceInfoSet);

Usage Example

Beispiel #1
0
 /// <summary>
 /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
 /// </summary>
 public void Dispose()
 {
     if (_deviceInfoSet != IntPtr.Zero)
     {
         Native.SetupDiDestroyDeviceInfoList(_deviceInfoSet);
         _deviceInfoSet = IntPtr.Zero;
     }
 }