Hallo,
I would like to use the macro DEFINE_GUID() but have some problems doing this.
This macro is defined in <guiddef.h>
In a header file of mine I use
#include <initguid.h>
which himself defines INITGUID and should include guiddef.h
#define INITGUID
#include <guiddef.h>
But <guiddef.h> is included prior of this with <windows.h> and is included only once.
So, what is the correct methode to use the DEFINE_GUID() macro?
czerny