1999-01-23 15:05:28 +01:00
|
|
|
/*
|
|
|
|
* defines a minimum set of macros create GUID's to keep the size
|
|
|
|
* small
|
|
|
|
*
|
|
|
|
* this file should be included into "only GUID definition *.h" like
|
|
|
|
* shlguid.h
|
|
|
|
*/
|
|
|
|
|
1999-06-12 20:36:54 +02:00
|
|
|
#ifndef __WINE_INITGUID_H
|
|
|
|
#define __WINE_INITGUID_H
|
1999-01-23 15:05:28 +01:00
|
|
|
|
|
|
|
#include "wtypes.h"
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Macros to declare the GUIDs
|
|
|
|
*/
|
1999-04-01 13:47:09 +02:00
|
|
|
#undef DEFINE_GUID
|
|
|
|
|
1999-01-23 15:05:28 +01:00
|
|
|
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
|
|
|
|
const GUID name = \
|
|
|
|
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
|
|
|
|
|
1999-06-12 20:36:54 +02:00
|
|
|
#endif /* __WINE_INITGUID_H */
|