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.
44 lines
894 B
44 lines
894 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1998
|
|
//
|
|
// File: ndisutil.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
// NdisUtil header file.
|
|
// This is for everything that shouldn't be exported.
|
|
|
|
|
|
#ifndef _NDISUTIL_H_
|
|
#define _NDISUTIL_H_
|
|
|
|
|
|
void NotifyTcpipOfChanges(LPCTSTR pszMachineName);
|
|
|
|
|
|
HRESULT
|
|
HrSendNdisHandlePnpEvent (
|
|
UINT uiLayer,
|
|
UINT uiOperation,
|
|
LPCWSTR pszUpper,
|
|
LPCWSTR pszLower,
|
|
LPCWSTR pmszBindList,
|
|
PVOID pvData,
|
|
DWORD dwSizeData);
|
|
|
|
HRESULT
|
|
HrSendNdisPnpReconfig (
|
|
UINT uiLayer,
|
|
LPCWSTR wszUpper,
|
|
LPCWSTR wszLower,
|
|
PVOID pvData,
|
|
DWORD dwSizeData);
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|