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.

79 lines
1.2 KiB

  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. # include <iis.h>
  14. # include "dbgutil.h"
  15. #include <winsock2.h>
  16. #include <ws2tcpip.h>
  17. #include <http.h>
  18. #include <httpp.h>
  19. //
  20. // General C runtime libraries
  21. #include <windows.h>
  22. #include <psapi.h>
  23. //
  24. // Headers for this project
  25. //
  26. #include <objbase.h>
  27. #include <resapi.h>
  28. #include "regconst.h"
  29. #include "w3wpListHttpReq.h"
  30. #include <w3wpListInfoStruct.h>
  31. #include "processdetails.h"
  32. //
  33. // Turn off dllexp so this DLL won't export tons of unnecessary garbage.
  34. //
  35. #ifdef dllexp
  36. #undef dllexp
  37. #endif
  38. #define dllexp
  39. //
  40. // To obtain the private & protected members of C++ class,
  41. // let me fake the "private" keyword
  42. //
  43. # define private public
  44. # define protected public
  45. #include <string.hxx>
  46. #include <WorkerRequest.hxx>
  47. #ifdef private
  48. #undef private
  49. #endif
  50. #ifdef protected
  51. #undef protected
  52. #endif
  53. #endif // _PRECOMP_H_