标签:uid height int sid type typeof amp pre efi
用来获取 某种结构、接口及其指针、引用、变量 所关联的GUID,类似于某些语言中获取类型 typeof 这样的操作。
假定c++中,有结构体s
struct s { int i; };
可以通过下面的__declspec 给这个结构 关联一个GUID
struct __declspec(uuid("93A1665E-C9FA-4147-AC3A-3CC855281AF8")) s;
以后程序中使用该结构
s a, *b, &c; __uuidof(s); __uuidof(a); __uuidof(b); __uuidof(c);
REFCLSID,REFIID,CLSID,IID,GUID = __uuidof(x)
都能得到结构s关联的GUID:("93A1665E-C9FA-4147-AC3A-3CC855281AF8")
标签:uid height int sid type typeof amp pre efi
原文地址:http://www.cnblogs.com/litandy2016/p/6177945.html