emostore_i.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #ifdef __cplusplus
  7. extern "C"{
  8. #endif
  9. #include <rpc.h>
  10. #include <rpcndr.h>
  11. #ifdef _MIDL_USE_GUIDDEF_
  12. #ifndef INITGUID
  13. #define INITGUID
  14. #include <guiddef.h>
  15. #undef INITGUID
  16. #else
  17. #include <guiddef.h>
  18. #endif
  19. #define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8)
  20. #else
  21. #ifndef __IID_DEFINED__
  22. #define __IID_DEFINED__
  23. typedef struct _IID {
  24. unsigned long x;
  25. unsigned short s1;
  26. unsigned short s2;
  27. unsigned char c[8];
  28. } IID;
  29. #endif
  30. #ifndef CLSID_DEFINED
  31. #define CLSID_DEFINED
  32. typedef IID CLSID;
  33. #endif
  34. #define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) const type name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}}
  35. #endif
  36. MIDL_DEFINE_GUID(IID,IID_IExchangeServer,0x25150F47,0x5734,0x11d2,0xA5,0x93,0x00,0xC0,0x4F,0x99,0x0D,0x8A);
  37. MIDL_DEFINE_GUID(IID,IID_IStorageGroup,0x25150F46,0x5734,0x11d2,0xA5,0x93,0x00,0xC0,0x4F,0x99,0x0D,0x8A);
  38. MIDL_DEFINE_GUID(IID,IID_IPublicStoreDB,0x25150F44,0x5734,0x11d2,0xA5,0x93,0x00,0xC0,0x4F,0x99,0x0D,0x8A);
  39. MIDL_DEFINE_GUID(IID,IID_IMailboxStoreDB,0x25150F45,0x5734,0x11d2,0xA5,0x93,0x00,0xC0,0x4F,0x99,0x0D,0x8A);
  40. MIDL_DEFINE_GUID(IID,IID_IFolderTree,0x25150F43,0x5734,0x11d2,0xA5,0x93,0x00,0xC0,0x4F,0x99,0x0D,0x8A);
  41. MIDL_DEFINE_GUID(IID,IID_IDataSource2,0x25150F48,0x5734,0x11d2,0xA5,0x93,0x00,0xC0,0x4F,0x99,0x0D,0x8A);
  42. #undef MIDL_DEFINE_GUID
  43. #ifdef __cplusplus
  44. }
  45. #endif