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.

81 lines
1.3 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 "dbgutil.h"
  19. #include <winreg.h>
  20. #include <iisfilt.h>
  21. #include <iisfiltp.h>
  22. #include <winsock2.h>
  23. #include <ws2tcpip.h>
  24. #include <http.h>
  25. #include <httpp.h>
  26. //
  27. // Security related headers
  28. //
  29. #define SECURITY_WIN32
  30. #include <security.h>
  31. #include <ntlsa.h>
  32. //
  33. // General C runtime libraries
  34. //
  35. #include <string.h>
  36. #include <wchar.h>
  37. //
  38. // IIS headers
  39. //
  40. #include <iadmw.h>
  41. #include <mb.hxx>
  42. #include <inetinfo.h>
  43. #include <iiscnfgp.h>
  44. #include <lkrhash.h>
  45. #include <lock.hxx>
  46. #include <acache.hxx>
  47. #include <string.hxx>
  48. #include <stringa.hxx>
  49. #include <reftrace.h>
  50. #include <etwtrace.hxx>
  51. #include <normalize.hxx>
  52. //
  53. // Headers for this project
  54. //
  55. #include <w3isapi.h>
  56. #include <dll_manager.h>
  57. // BUGBUG - iisext* need to be merged into iisplus once we have
  58. // a real integration plan for now they must be considred read
  59. // only
  60. #include "iisextp.h"
  61. #endif // _PRECOMP_H_