在我的C#代码中,我尝试使用C ++函数:CM_Locate_DevNodeW
和CM_Open_DevNode_Key
(使用pinvoke)。
我的代码看起来像这样:
String deviceId = "PCI\\VEN_8086&DEV_591B&SUBSYS_22128086&REV_01\\3&11583659&0&10";
int devInst = 0;
cmStatus = CM_Locate_DevNodeW(&devInst, deviceId, CM_LOCATE_DEVNODE_NORMAL);
if (cmStatus == CR_SUCCESS)
{
UIntPtr pHKey = new UIntPtr();
cmStatus = CM_Open_DevNode_Key(devInst, KEY_ALL_ACCESS, 0, RegDisposition_OpenExisting, pHKey, CM_REGISTRY_SOFTWARE);
if (cmStatus == CR_SUCCESS)
{
//but here cmStatus=3 (Invalid Pointer)
}
}
在调用CM_Locate_DevNodeW
之后,devInst
变为1
,而cmStatus
为0 = CR_SUCCESS
。但是对CM_Open_DevNode_Key
的调用失败。
我不知道CM_Locate_DevNodeW
是否返回CR_SUCCESS
,但是在devInst
中放入了不正确的数据? (“ 1”似乎不是真实的设备实例句柄...)
也许对CM_Open_DevNode_Key
的呼叫是错误的?
我声明了这样的功能:
[DllImport("cfgmgr32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern unsafe int CM_Locate_DevNodeW(
int* pdnDevInst,
string pDeviceID,
ulong ulFlags);
[DllImport("cfgmgr32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern unsafe int CM_Open_DevNode_Key(
int dnDevNode,
int samDesired,
int ulHardwareProfile,
int Disposition,
IntPtr phkDevice,
int ulFlags);
任何帮助将不胜感激!
答案 0 :(得分:1)
我在弄弄您的代码,这就是到目前为止。阅读一些文档后,我发现phkDevice
函数的CM_Open_DevNode_Key
参数很可能是out
参数,因此我更新了函数签名
[DllImport("cfgmgr32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern unsafe int CM_Open_DevNode_Key(
int dnDevNode,
int samDesired,
int ulHardwareProfile,
int Disposition,
out IntPtr phkDevice, //added out keyword
int ulFlags);
我尝试运行以下代码
IntPtr pHKey;
string deviceId = @"my keyboard pci id";
int devInst = 0;
int cmStatus = CM_Locate_DevNodeW(&devInst, deviceId, CM_LOCATE_DEVNODE_NORMAL);
if (cmStatus == CR_SUCCESS)
{
int opencmStatus = CM_Open_DevNode_Key(devInst, KEY_ALL_ACCESS, 0, RegDisposition_OpenExisting, out pHKey, CM_REGISTRY_SOFTWARE);
if (opencmStatus == CR_SUCCESS)
{
//
}
}
我得到了opencmStatus
51
,它对应于CR_ACCESS_DENIED
。然后,我想:“ 嗯,我不只是请求太多访问权限吗?让我们只尝试读取访问权限选项”所以我将KEY_ALL_ACCESS
替换为1
(KEY_QUERY_VALUE
)并运行以下代码
IntPtr pHKey;
string deviceId = @"my keyboard pci id";
int devInst = 0;
int cmStatus = CM_Locate_DevNodeW(&devInst, deviceId, CM_LOCATE_DEVNODE_NORMAL);
if (cmStatus == CR_SUCCESS)
{
int opencmStatus = CM_Open_DevNode_Key(devInst, 1, 0, RegDisposition_OpenExisting, out pHKey, CM_REGISTRY_SOFTWARE);
if (opencmStatus == CR_SUCCESS)
{
//
}
}
它按预期工作。最后,这个版本给我opencmStatus
等于0
。
我对键盘PCI标识符进行了所有测试,不知道这是否重要。