Source code of Windows XP (NT5)
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.

110 lines
1.9 KiB

  1. #ifndef _SMTPINC_H_
  2. #define _SMTPINC_H_
  3. #define INCL_INETSRV_INCS
  4. #include <atq.h>
  5. #include <pudebug.h>
  6. #include <inetcom.h>
  7. #include <inetinfo.h>
  8. #include <tcpdll.hxx>
  9. #include <tsunami.hxx>
  10. #include <tchar.h>
  11. #include <iistypes.hxx>
  12. #include <iisendp.hxx>
  13. #include <metacach.hxx>
  14. extern "C" {
  15. #include <rpc.h>
  16. #define SECURITY_WIN32
  17. #include <wincrypt.h>
  18. #include <sspi.h>
  19. #include <spseal.h>
  20. #include <issperr.h>
  21. #include <ntlmsp.h>
  22. }
  23. #include <tcpproc.h>
  24. #include <tcpcons.h>
  25. #include <rdns.hxx>
  26. #include <simauth2.h>
  27. #include <smtpinet.h>
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <abtype.h>
  31. #include <abook.h>
  32. #include <string.h>
  33. #include <time.h>
  34. #include <lmcons.h>
  35. #include <dbgtrace.h>
  36. #include <cpool.h>
  37. #include <address.hxx>
  38. #include <ims.h>
  39. #include <envdef.h>
  40. #include <propstr.h>
  41. #include <mailmsgprops.h>
  42. #include <smtpevents.h>
  43. /*
  44. #define _ATL_NO_DEBUG_CRT
  45. #define _ATL_STATIC_REGISTRY
  46. #define _ASSERTE _ASSERT
  47. #define _WINDLL
  48. #include "atlbase.h"
  49. extern CComModule _Module;
  50. #include "atlcom.h"
  51. #undef _WINDLL
  52. */
  53. #include "filehc.h"
  54. #include "mailmsgi.h"
  55. #include "aqueue.h"
  56. //
  57. // common headers from pop3/inc
  58. //
  59. #include <smtptype.h>
  60. #include <smtps.h>
  61. #include <smtpapi.h>
  62. #include <listmacr.h>
  63. #include <rwnew.h>
  64. //
  65. // local header files
  66. //
  67. #ifdef BUILDING_SMTP_DEBUG_EXTENTIONS
  68. //Debugger extensions need access to private/protected members to
  69. //calculate their memory offsets
  70. #define private public
  71. #define protected public
  72. #endif //BUILDING_SMTP_DEBUG_EXTENTIONS
  73. #include "stats.hxx"
  74. #include "smtpmsg.h"
  75. #include "queue.hxx"
  76. #include "evntwrap.h"
  77. #include "globals.h"
  78. #include "smtpinst.hxx"
  79. #include "errorlog.hxx"
  80. #include "smtpproc.h"
  81. #ifdef UNICODE
  82. #define TSTRCPY wcscpy
  83. #define TSTRCAT wcscat
  84. #define TSTRLEN wcslen
  85. #else
  86. #define TSTRCPY lstrcpy
  87. #define TSTRCAT lstrcat
  88. #define TSTRLEN lstrlen
  89. #endif
  90. typedef TCHAR *PTCHAR;
  91. #endif // _SMTPINC_H_