Ensure that the WM_ENTERIDLE message is not sent if the wake-up event
[wine] / include / initguid.h
1 /*
2  * defines a minimum set of macros create GUID's to keep the size 
3  * small
4  *
5  * this file should be included into "only GUID definition *.h" like
6  * shlguid.h
7  */
8
9 #ifndef __WINE_INITGUID_H
10 #define __WINE_INITGUID_H
11
12 #include "wtypes.h"
13
14 /*****************************************************************************
15  * Macros to declare the GUIDs
16  */
17 #undef DEFINE_GUID
18
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 } }
22
23 #endif /* __WINE_INITGUID_H */