blob: 9137f76108f3d1860fcb467da15d0b2c85caadfa [file] [log] [blame]
/*
* 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
*/
#ifndef __WINE_INITGUID_H
#define __WINE_INITGUID_H
#include "wtypes.h"
/*****************************************************************************
* Macros to declare the GUIDs
*/
#undef DEFINE_GUID
#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 } }
DEFINE_GUID(GUID_NULL, 0,0,0,0,0,0,0,0,0,0,0);
#endif /* __WINE_INITGUID_H */