mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
488 B
18 lines
488 B
#ifndef __COM_HXX__
|
|
#define __COM_HXX__
|
|
|
|
static GUID CLSID_BasicBnd =
|
|
{0x99999999,0x0000,0x0008,{0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x49}};
|
|
|
|
static GUID CLSID_AdvBnd =
|
|
{0x99999999,0x0000,0x0008,{0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x48}};
|
|
|
|
static GUID CLSID_TestEmbed =
|
|
{0x99999999,0x0000,0x0008,{0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x47}};
|
|
|
|
inline GuidEqual(const GUID& guid1, const GUID& guid2)
|
|
{
|
|
return memcmp(&guid1, &guid2, sizeof(GUID)) == 0;
|
|
}
|
|
|
|
#endif // __COM_HXX__
|