27 lines
618 B
C
27 lines
618 B
C
//+---------------------------------------------------------------------------
|
|
//
|
|
// 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
|