标签:
WCHAR enumeratorName[64] = {0}; UNICODE_STRING unicodeEnumName; RtlInitUnicodeString(&unicodeEnumName, enumeratorName);
unicodeEnumName是指向enumeratorName的内存指针
UNICODE_STRING temp; RtlInitUnicodeString(&temp, L"PCI");
temp是字符串“PCI”的内存指针
标签:
原文地址:http://www.cnblogs.com/jacklu/p/4300877.html