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.
36 lines
804 B
36 lines
804 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: N C P N P . H
|
|
//
|
|
// Contents: Common code for PnP.
|
|
//
|
|
// Notes: Pollute this under penalty of death.
|
|
//
|
|
// Author: shaunco 10 Oct 1997
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
#ifndef _NCPNP_H_
|
|
#define _NCPNP_H_
|
|
|
|
#include "ndispnp.h"
|
|
|
|
HRESULT
|
|
HrSendServicePnpEvent (
|
|
PCWSTR pszService,
|
|
DWORD dwControl);
|
|
|
|
HRESULT
|
|
HrSendNdisPnpReconfig (
|
|
UINT uiLayer,
|
|
PCWSTR pszUpper,
|
|
PCWSTR pszLower = NULL,
|
|
PVOID pvData = NULL,
|
|
DWORD dwSizeData = 0);
|
|
|
|
#endif // _NCPNP_H_
|
|
|