wine/include/initguid.h
Adrian Thurston 5a09711873 initguid.h should only contain the macro that defines the guids.
Added olectl.h to guid.c so some needed guids get defined.
Made GUID_NULL an actual guid set to 0,0,0...
1999-04-01 11:47:09 +00:00

24 lines
534 B
C

/*
* 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 __INIT_GUID_H
#define __INIT_GUID_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 } }
#endif