我正在尝试初始化GUID变量,但我不确定这是你的意思。我特别困惑的是如何在char数组中存储最后12个十六进制数字(我是否包含“ - ”字符?)
如何定义/初始化GUID变量?
bool TVManager::isMonitorDevice(GUID id)
{
// Class GUID for a Monitor is: {4d36e96e-e325-11ce-bfc1-08002be10318}
GUID monitorClassGuid;
char* a = "bfc1-08002be10318"; // do I store the "-" character?
monitorClassGuid.Data1 = 0x4d36e96e;
monitorClassGuid.Data2 = 0xe325;
monitorClassGuid.Data3 = 0x11ce;
monitorClassGuid.Data4 = a;
return (bool(id == monitorClassGuid));
}
答案 0 :(得分:12)
Data4
成员不是指针,它是一个数组。你想要:
monitorClassGuid.Data4 = { 0xbf, 0xc1, 0x08, 0x00, 0x2b, 0xe1, 0x03, 0x18 };
让你的例子有用。您可能会发现更容易进行所有初始化以及monitorClassGuid
变量的定义:
GUID monitorClassGuid = { 0x4d36e96e, 0xe325, 0x11c3, { 0xbf, 0xc1, 0x08, 0x00, 0x2b, 0xe1, 0x03, 0x18 } };
答案 1 :(得分:1)
这个问题是很久以前问过的,但是也许对其他人有帮助。
您可以使用以下代码初始化GUID:
#include <combaseapi.h>;
GUID guid;
CLSIDFromString(L"{4d36e96e-e325-11ce-bfc1-08002be10318}", &guid);