CoCreateGuid()用法

今天在程序中看到一函数,颇感陌生,特查之

CString CConnectManager::newGUID()

{
   CString buf;
   GUID guid;
   if (S_OK == ::CoCreateGuid(&guid))
   {
     buf.Format("{%08X-%04X-%04x-%02X%02X-%02X%02X%02X%02X%02X%02X}"
       , guid.Data1
       , guid.Data2
       , guid.Data3
       , guid.Data4[0], guid.Data4[1]
       , guid.Data4[2], guid.Data4[3], guid.Data4[4], guid.Data4[5]
       , guid.Data4[6], guid.Data4[7]);
    }
   return buf;
}

用来返回一个系统自动生成的32位字符串。

关于CoCreateGuid()函数,MSDN如下解释:

   Creates a GUID, a unique 128-bit integer used for CLSIDs and interface identifiers.

   HRESULT CoCreateGuid(
    GUID
 * pguid
   );

  如果函数执行成功,返回S_OK,

  GUID是一个结构体,MSDN解释如下:

 

The GUID structure stores a GUID.

 

typedef struct _GUID {
DWORD Data1;
WORD Data2;
WORD Data3;
BYTE Data4[8]; } GUID;
Members
Data1

Specifies the first 8 hexadecimal digits of the GUID.

Data2

Specifies the first group of 4 hexadecimal digits.

Data3

Specifies the second group of 4 hexadecimal digits.

Data4

Array of 8 bytes. The first 2 bytes contain the third group of 4 hexadecimal digits. The remaining 6 bytes contain the final 12 hexadecimal digits.

Remarks

GUIDs are the Microsoft implementation of the distributed computing environment (DCE) universally unique identifier ( UUID). The RPC run-time libraries use UUIDs to check for compatibility between clients and servers and to select among multiple implementations of an interface. The Windows access-control functions use GUIDs to identify the type of object that an object-specific ACE in an access-control list (ACL) protects.

函数用来返回一个唯一的表示字符串。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值