mirror of https://github.com/tongzx/nt5src
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
26 lines
601 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 2000.
|
|
//
|
|
// File: U D H H T T P . H
|
|
//
|
|
// Contents: Device host HTTP server interface
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: danielwe 2000/10/31
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef _UDHHTTP_H
|
|
#define _UDHHTTP_H
|
|
|
|
#pragma once
|
|
|
|
HRESULT HrHttpInitialize(VOID);
|
|
HRESULT HrAddVroot(LPWSTR szUrl, LPWSTR szPath);
|
|
HRESULT HrRemoveVroot(LPWSTR szUrl);
|
|
HRESULT HrHttpShutdown(VOID);
|
|
|
|
#endif //_UDHHTTP_H
|