2

对于连接到我的机器的设备,我想检索 device-property Bus Reported Device Description。为此,我使用Setup APISetupDiGetDeviceProperty函数。在devpkey.h我找到了定义DEVPKEY_Device_BusReportedDeviceDesc

但是,如果我使用DEVPKEY_Device_BusReportedDeviceDesc,我会在链接时收到未解析的外部符号 _DEVPKEY_Device_BusReportedDeviceDesc

这是我的代码(仅包含重现问题的最少代码):

#include "stdafx.h"

#include <Windows.h>
#include <devpropdef.h>
#include <devpkey.h>

int main()
{
    DEVPROPKEY x = DEVPKEY_Device_BusReportedDeviceDesc;

    return 0;
}

这是完整的错误代码:

错误 LNK2001:未解析的外部符号 _DEVPKEY_Device_BusReportedDeviceDesc

我该如何解决这个问题?

4

1 回答 1

6

要解决此问题,您需要包含initguid.h。这包括必须在devpropdef.hdevpkey.h之前。

#include "stdafx.h"
#include <initguid.h>   // include before devpropdef.h
#include <Windows.h>
#include <devpropdef.h>
#include <devpkey.h>

int main()
{
    DEVPROPKEY x = DEVPKEY_Device_BusReportedDeviceDesc;

    return 0;
}
于 2017-12-08T12:24:40.073 回答