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.

31 lines
622 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation
  6. //
  7. // File: kphttp.h
  8. //
  9. // Contents: prototypes for routines to handle http communication
  10. //
  11. // History: 10-Jul-2001 t-ryanj Created
  12. //
  13. //------------------------------------------------------------------------
  14. #include "kpcommon.h"
  15. #include "kpcontext.h"
  16. #ifndef __KPHTTP_H__
  17. #define __KPHTTP_H__
  18. VOID
  19. KpHttpRead(
  20. PKPCONTEXT pContext
  21. );
  22. VOID
  23. KpHttpWrite(
  24. PKPCONTEXT pContext
  25. );
  26. #endif // __KPHTTP_H__