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.

35 lines
516 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. httpp.h
  5. Abstract:
  6. Private master include file for the HTTP API project.
  7. Author:
  8. Keith Moore (keithmo) 16-Nov-1994
  9. Revision History:
  10. --*/
  11. //
  12. // Local include files.
  13. //
  14. #include "proc.h"
  15. #include "headers.h"
  16. // Beta logging
  17. #ifdef BETA_LOGGING
  18. #define BETA_LOG(stat) \
  19. {DWORD dw; IncrementUrlCacheHeaderData (CACHE_HEADER_DATA_##stat, &dw);}
  20. #else
  21. #define BETA_LOG(stat) do { } while(0)
  22. #endif