C#:获取设备实例句柄时出错

C#: Error in getting device instance handle

在我的 C# 代码中,我尝试使用 C++ 函数:CM_Locate_DevNodeWCM_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变为1cmStatus为0=CR_SUCCESS。但是对 CM_Open_DevNode_Key 的调用失败了。 我不知道 CM_Locate_DevNodeW returns 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);

如有任何帮助,我们将不胜感激!

我摆弄了你的代码,这就是我到目前为止所得到的。阅读一些文档后,我发现 CM_Open_DevNode_Key 函数的 phkDevice 参数可能是 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。然后我想“嗯,我不只是请求很多访问权限吗?让我们尝试只读访问选项”所以我用 1 替换了 KEY_ALL_ACCESSKEY_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 标识符进行了所有测试,不知道它是否重要。