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.

71 lines
991 B

  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. //
  23. // Security related headers
  24. //
  25. #define SECURITY_WIN32
  26. #include <security.h>
  27. #include <ntlsa.h>
  28. //
  29. // General C runtime libraries
  30. //
  31. #include <string.h>
  32. #include <wchar.h>
  33. //
  34. // IIS headers
  35. //
  36. #include <iadmw.h>
  37. #include <mb.hxx>
  38. #include <inetinfo.h>
  39. #include <iiscnfgp.h>
  40. #include <lkrhash.h>
  41. #include <lock.hxx>
  42. #include <acache.hxx>
  43. #include <string.hxx>
  44. //
  45. // Headers for this project
  46. //
  47. // BUGBUG - iisext* need to be merged into iisplus once we have
  48. // a real integration plan for now they must be considred read
  49. // only
  50. #include "iisextp.h"
  51. #endif // _PRECOMP_H_