Home | History | Annotate | Download | only in Common
      1 // Common/MyInitGuid.h
      2 
      3 #ifndef __COMMON_MY_INITGUID_H
      4 #define __COMMON_MY_INITGUID_H
      5 
      6 #ifdef _WIN32
      7 #ifdef UNDER_CE
      8 #include <basetyps.h>
      9 #endif
     10 #include <initguid.h>
     11 #ifdef UNDER_CE
     12 DEFINE_GUID(IID_IUnknown,
     13 0x00000000, 0x0000, 0x0000, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
     14 #endif
     15 #else
     16 #define INITGUID
     17 #include "MyGuidDef.h"
     18 DEFINE_GUID(IID_IUnknown,
     19 0x00000000, 0x0000, 0x0000, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);
     20 #endif
     21 
     22 #endif
     23