WSOCK32/WINSOCK uses SetLastError() to keep its own WSALastErrors,
[wine/dcerpc.git] / include / initguid.h
blobe092668c1f1d19fa47eed1b1f0904d8cedebd01c
1 /*
2 * defines a minimum set of macros create GUID's to keep the size
3 * small
5 * this file should be included into "only GUID definition *.h" like
6 * shlguid.h
7 */
9 #ifndef __INIT_GUID_H
10 #define __INIT_GUID_H
12 #include "wtypes.h"
14 /*****************************************************************************
15 * Macros to declare the GUIDs
17 #undef DEFINE_GUID
19 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
20 const GUID name = \
21 { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
23 #endif