Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.2 KiB

  1. // This builds mapiguid.obj, which can be linked into a DLL
  2. // or EXE to provide the MAPI GUIDs. It contains all GUIDs
  3. // defined by MAPI.
  4. #define USES_IID_IUnknown
  5. #define USES_IID_IMAPIUnknown
  6. #define USES_IID_IMAPITable
  7. #define USES_IID_INotifObj
  8. #define USES_IID_IMAPIProp
  9. #define USES_IID_IMAPIPropData
  10. #define USES_IID_IMAPIStatus
  11. #define USES_IID_IAddrBook
  12. #define USES_IID_IMailUser
  13. #define USES_IID_IMAPIContainer
  14. #define USES_IID_IABContainer
  15. #define USES_IID_IDistList
  16. #define USES_IID_IMAPITableData
  17. #define USES_PS_MAPI
  18. #define USES_PS_PUBLIC_STRINGS
  19. #ifdef __cplusplus
  20. #define EXTERN_C extern "C"
  21. #else
  22. #define EXTERN_C extern
  23. #endif
  24. #define INITGUID
  25. //#include "_apipch.h"
  26. #include <windows.h>
  27. #include <windowsx.h>
  28. #include <limits.h>
  29. #include <memory.h>
  30. #include <commdlg.h>
  31. #include <stdio.h>
  32. #include <string.h>
  33. #include <mbstring.h>
  34. #include <time.h>
  35. #include <math.h>
  36. //
  37. // MAPI headers
  38. //
  39. #include <mapiwin.h>
  40. #include <mapidefs.h>
  41. #include <mapicode.h>
  42. #include <mapitags.h>
  43. #include <mapiguid.h>
  44. //#include <mapispi.h>
  45. #include <mapiutil.h>
  46. #include <mapival.h>
  47. #include <mapix.h>
  48. #include <mapiutil.h>
  49. #include <unknwn.h>