1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include <w32lib/w32lib.h>
#include "w32lib_impl.h"
/***************************************************************/
#define W32LIB_IID_GUID(mname,lname, \
u32,u16a,u16b, \
u8a,u8b,u8c,u8d,u8e,u8f,u8g,u8h) \
W32LIB_GUID (W32LIB_HIDDEN_NAME(iid,mname), \
W32LIB_NAMESPACE_NAME(iid,mname), \
W32LIB_LEGACY_NAME(IID,lname), \
u32,u16a,u16b, \
u8a,u8b,u8c,u8d,u8e,u8f,u8g,u8h) \
/***************************************************************/
W32LIB_IID_GUID(iunknown, IUnknown, 0x0,0x0,0x0, 0,0,0,0,0,0,0,0)
W32LIB_IID_GUID(iclass_factory,IClassFactory, 0x1,0x0,0x0, 0,0,0,0,0,0,0,0)
W32LIB_IID_GUID(idrop_target,IDropTarget, \
0x00000122,0x0000,0x0000, \
0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46)
W32LIB_IID_GUID(ipersist_file,IPersistFile, \
0x0000010b,0x0000,0x0000, \
0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46)
W32LIB_IID_GUID(ishell_link_ansi,IShellLinkA, \
0x000214ee,0x0000,0x0000, \
0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46)
W32LIB_IID_GUID(ishell_link_utf16,IShellLinkW, \
0x000214f9,0x0000,0x0000, \
0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46)
W32LIB_IID_GUID(idrop_target_helper,IDropTargetHelper, \
0x4657278b,0x411b,0x11d2, \
0x83,0x9a,0x00,0xc0,0x4f,0xd9,0x18,0xd0)
W32LIB_IID_GUID(iproperty_store,IPropertyStore, \
0x886d8eeb,0x8cf2,0x4446, \
0x8d,0x02,0xcd,0xba,0x1d,0xbd,0xcf,0x99)
|