我正在尝试检索一组与显示相关的接口,并且似乎总是得到 259 错误。由于我非常缺乏经验,WinApi
我可能需要一些提示:)
#include <atlstr.h>
#include <SetupApi.h>
#pragma comment(lib, "setupapi.lib")
#include <stdio.h>
#include <windows.h>
#include <setupapi.h>
#include <devguid.h>
#include <regstr.h>
const GUID GUID_CLASS_MONITOR = {0x4d36e96e, 0xe325, 0x11ce, 0xbf, 0xc1, 0x08, 0x00, 0x2b, 0xe1, 0x03, 0x18};
const GUID GUID_DEVINTERFACE_MONITOR = {0xe6f07b5f, 0xee97, 0x4a90, 0xb0, 0x76, 0x33, 0xf5, 0x7b, 0xf4, 0xea, 0xa7};
int main( int argc, char *argv[ ] )
{
HDEVINFO hDevInfo;
SP_DEVICE_INTERFACE_DATA ifData;
ifData.cbSize = sizeof(ifData);
DWORD dwError;
hDevInfo = SetupDiGetClassDevs(NULL /*&GUID_CLASS_MONITOR*/, NULL, NULL, DIGCF_ALLCLASSES);
dwError = GetLastError();
BOOL bRtn = SetupDiEnumDeviceInterfaces(hDevInfo, NULL, &GUID_CLASS_MONITOR, 0, &ifData); // GUID_DEVINTERFACE_MONITOR did not work either
dwError = GetLastError();
return 0;
}
我看不出我做错了什么SetupDiGetClassDevs
没有错误,但我尝试的一切都SetupDiEnumDeviceInterfaces
返回259。我一直在尝试设备设置以及设备界面 GUID,但没有成功。
编辑:澄清:bRtn 返回 0,这意味着SetupDiEnumDeviceInterfaces
失败。该259
错误意味着没有更多项目,但我的系统连接了两个屏幕,并且由于我在SetupDiGetClassDevs
没有 GUID 的情况下调用,我希望至少获得我的两个屏幕项目。
编辑:按照建议添加了 cbSize