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.

59 lines
871 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. precomp.hxx
  5. Abstract:
  6. Master include file for the IIS Worker Process Protocol Handling
  7. Author:
  8. Murali Krishnan (MuraliK) 10-Nov-1998
  9. Revision History:
  10. --*/
  11. #ifndef _PRECOMP_H_
  12. #define _PRECOMP_H_
  13. //
  14. // System related headers
  15. //
  16. # include <iis.h>
  17. # include "dbgutil.h"
  18. #include <winsock2.h>
  19. #include <ws2tcpip.h>
  20. //
  21. // UL related headers
  22. //
  23. #include <http.h>
  24. #include <httpp.h>
  25. //
  26. // General C runtime libraries
  27. #include <string.h>
  28. #include <wchar.h>
  29. #include <process.h>
  30. //
  31. // Headers for this project
  32. //
  33. #include <objbase.h>
  34. #include <ulatq.h>
  35. #include <buffer.hxx>
  36. #include <regconst.h>
  37. #include "wptypes.hxx"
  38. #include "thread_pool.h"
  39. #include "wprecycler.hxx"
  40. #include "workerrequest.hxx"
  41. #endif // _PRECOMP_H_