码迷,mamicode.com
首页 > 其他好文 > 详细

__declspec,uuid,__uuidof 使用说明

时间:2016-12-14 09:39:08      阅读:194      评论:0      收藏:0      [点我收藏+]

标签: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")

__declspec,uuid,__uuidof 使用说明

标签:uid   height   int   sid   type   typeof   amp   pre   efi   

原文地址:http://www.cnblogs.com/litandy2016/p/6177945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!