Also Microsoft.Win32.RegistryValueKind only contains enumerations for the basic kinds.
Tips & Tricks:
Please add some!
Sample Code:
// The following code shows how to grab the parent device's driver name. The devinfo_data.DevInst is
// from SetupDiEnumDeviceInterfaces and SetupDiGetDeviceInterfaceDetail so please see those examples
if (length > 0)
{
IntPtr buffer = Marshal.AllocHGlobal((int)length);
if (CR_SUCCESS == CM_Get_DevNode_Registry_Property(devinst, CM_DRP_DRIVER, out kind, buffer, ref length, 0))
driver_name = Marshal.PtrToStringAnsi(buffer);
Marshal.FreeHGlobal(buffer);
}
}
Click to read this page
1/27/2011 6:44:52 PM - -93.176.200.208
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).