1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <w32lib/w32lib.h>
#include "w32lib_impl.h"
/***************************************************************/
#define W32LIB_CLSID_GUID(mname,lname, \
u32,u16a,u16b, \
u8a,u8b,u8c,u8d,u8e,u8f,u8g,u8h) \
W32LIB_GUID (W32LIB_HIDDEN_NAME(clsid,mname), \
W32LIB_NAMESPACE_NAME(clsid,mname), \
W32LIB_LEGACY_NAME(CLSID,lname), \
u32,u16a,u16b, \
u8a,u8b,u8c,u8d,u8e,u8f,u8g,u8h) \
/***************************************************************/
W32LIB_CLSID_GUID(shell_link,ShellLink, \
0x00021401,0x0000,0x0000, \
0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46)
|