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.

113 lines
2.0 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 <dns.h>
  24. #include <dnsapi.h>
  25. #include <tcpproc.h>
  26. #include <tcpcons.h>
  27. #include <rdns.hxx>
  28. #include <simauth2.h>
  29. #include <smtpinet.h>
  30. #include <stdio.h>
  31. #include <stdlib.h>
  32. #include <abtype.h>
  33. #include <abook.h>
  34. #include <string.h>
  35. #include <time.h>
  36. #include <lmcons.h>
  37. #include <dbgtrace.h>
  38. #include <cpool.h>
  39. #include <address.hxx>
  40. #include <ims.h>
  41. #include <envdef.h>
  42. #include <propstr.h>
  43. #include <mailmsgprops.h>
  44. #include <smtpevents.h>
  45. /*
  46. #define _ATL_NO_DEBUG_CRT
  47. #define _ATL_STATIC_REGISTRY
  48. #define _ASSERTE _ASSERT
  49. #define _WINDLL
  50. #include "atlbase.h"
  51. extern CComModule _Module;
  52. #include "atlcom.h"
  53. #undef _WINDLL
  54. */
  55. #include "filehc.h"
  56. #include "mailmsgi.h"
  57. #include "aqueue.h"
  58. //
  59. // common headers from pop3/inc
  60. //
  61. #include <smtptype.h>
  62. #include <smtps.h>
  63. #include <smtpapi.h>
  64. #include <listmacr.h>
  65. #include <rwnew.h>
  66. //
  67. // local header files
  68. //
  69. #ifdef BUILDING_SMTP_DEBUG_EXTENTIONS
  70. //Debugger extensions need access to private/protected members to
  71. //calculate their memory offsets
  72. #define private public
  73. #define protected public
  74. #endif //BUILDING_SMTP_DEBUG_EXTENTIONS
  75. #include "stats.hxx"
  76. #include "smtpmsg.h"
  77. #include "queue.hxx"
  78. #include "evntwrap.h"
  79. #include "globals.h"
  80. #include "smtpinst.hxx"
  81. #include "errorlog.hxx"
  82. #include "smtpproc.h"
  83. #ifdef UNICODE
  84. #define TSTRCPY wcscpy
  85. #define TSTRCAT wcscat
  86. #define TSTRLEN wcslen
  87. #else
  88. #define TSTRCPY lstrcpy
  89. #define TSTRCAT lstrcat
  90. #define TSTRLEN lstrlen
  91. #endif
  92. typedef TCHAR *PTCHAR;
  93. #endif // _SMTPINC_H_