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.

72 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. precomp.hxx
  5. Abstract:
  6. Master include file for IIS Plus ISAPI module
  7. Author:
  8. Taylor Weiss (TaylorW)
  9. Revision History:
  10. --*/
  11. #ifndef _PRECOMP_H_
  12. #define _PRECOMP_H_
  13. //
  14. // System related headers
  15. //
  16. #include <iis.h>
  17. #include <winsock2.h>
  18. #include <ws2tcpip.h>
  19. #include "dbgutil.h"
  20. #include <winreg.h>
  21. #include <iisfilt.h>
  22. #include <iisfiltp.h>
  23. //
  24. // Security related headers
  25. //
  26. #define SECURITY_WIN32
  27. #include <security.h>
  28. #include <ntlsa.h>
  29. //
  30. // General C runtime libraries
  31. //
  32. #include <string.h>
  33. #include <wchar.h>
  34. //
  35. // IIS headers
  36. //
  37. #include <iadmw.h>
  38. #include <mb.hxx>
  39. #include <inetinfo.h>
  40. #include <iiscnfgp.h>
  41. #include <lkrhash.h>
  42. #include <lock.hxx>
  43. #include <acache.hxx>
  44. #include <string.hxx>
  45. //
  46. // Headers for this project
  47. //
  48. // BUGBUG - iisext* need to be merged into iisplus once we have
  49. // a real integration plan for now they must be considred read
  50. // only
  51. #include "iisextp.h"
  52. #endif // _PRECOMP_H_