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.
25 lines
310 B
25 lines
310 B
#ifndef GUID_H
|
|
#define GUID_H
|
|
|
|
//
|
|
// {5fe50e0e-8dcb-11d0-8c43-00c04fc2c621}
|
|
//
|
|
|
|
DEFINE_GUID(
|
|
CLSID_PStoreNameSpace,
|
|
0x5fe50e0e,
|
|
0x8dcb,
|
|
0x11d0,
|
|
0x8c,
|
|
0x43,
|
|
0x00,
|
|
0xc0,
|
|
0x4f,
|
|
0xc2,
|
|
0xc6,
|
|
0x21
|
|
);
|
|
|
|
#define CLSID_CmdGrp CLSID_PStoreNameSpace
|
|
|
|
#endif // GUID_H
|