我正在尝试从SetupDiGetDeviceRegistryProperty
调用函数setupapi.h
,其输出参数名为PropertyRegDataType
,类型为PDWORD
。 PDWORD
只是一个扩展为unsigned long near *
的typedef。
SetupDiGetDeviceRegistryProperty documentation on MSDN可以对PropertyRegDataType
参数进行说明:
PropertyRegDataType [out, optional] A pointer to a variable that receives the data type of the property that is being retrieved. This is one of the standard registry data types. This parameter is optional and can be NULL.
但是,页面中没有提到“标准注册表数据类型”是什么。所以我的问题是:什么是标准的注册表数据类型,我应该如何通过阅读MSDN页面来确定这一点?