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.

26 lines
601 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000.
  5. //
  6. // File: U D H H T T P . H
  7. //
  8. // Contents: Device host HTTP server interface
  9. //
  10. // Notes:
  11. //
  12. // Author: danielwe 2000/10/31
  13. //
  14. //----------------------------------------------------------------------------
  15. #ifndef _UDHHTTP_H
  16. #define _UDHHTTP_H
  17. #pragma once
  18. HRESULT HrHttpInitialize(VOID);
  19. HRESULT HrAddVroot(LPWSTR szUrl, LPWSTR szPath);
  20. HRESULT HrRemoveVroot(LPWSTR szUrl);
  21. HRESULT HrHttpShutdown(VOID);
  22. #endif //_UDHHTTP_H