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
618 B
26 lines
618 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 2000.
|
|
//
|
|
// File: D E S C R Q S T . H
|
|
//
|
|
// Contents: Header file for description request processing implementation
|
|
// for the UPnP Device Host ISAPI Extension.
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: spather 2000/08/31
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#ifndef __DESCRQST_H
|
|
#define __DESCRQST_H
|
|
|
|
DWORD WINAPI
|
|
DwHandleContentRequest(
|
|
LPVOID lpParameter);
|
|
|
|
#endif //!__DESCRQST_H
|