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.

50 lines
1.1 KiB

  1. /************************************************************************************************
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name: stdafx.h.
  4. Abstract: Include files normally used by all pop3 service code
  5. Notes:
  6. History: 08/01/2001 - Hao Yu
  7. ************************************************************************************************/
  8. #pragma once
  9. #ifdef DBG
  10. #undef NDEBUG
  11. #endif
  12. // includes
  13. #include <windows.h>
  14. #include <assert.h>
  15. #include <tchar.h>
  16. #include <process.h>
  17. #include <stdlib.h>
  18. #include <stdio.h>
  19. #include <objbase.h>
  20. #ifdef ROCKALL3
  21. #define COMPILING_ROCKALL_DLL
  22. #include <FastHeap.hpp>
  23. #endif
  24. #define ASSERT assert
  25. #define POP3_SERVICE_NAME _T("POP3SVC")
  26. #include <Pop3Auth.h>
  27. #include <IOContext.h>
  28. #include <pop3events.h>
  29. #include "Mailbox.h"
  30. #include "EventLogger.h"
  31. #include "service.h"
  32. #include "Pop3Svc.hxx"
  33. #include "IOLists.h"
  34. #include <ThdPool.hxx>
  35. #include <sockpool.hxx>
  36. #include "Pop3Context.h"
  37. #include "NTAuth.h"
  38. #include "PerfApp.h"
  39. #include "Pop3SvcPerf.h"
  40. #include <GlobalDef.h>
  41. // End of file stdafx.h.