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
962 B
44 lines
962 B
//=================================================================
|
|
|
|
//
|
|
|
|
// NTDriverIO.h --
|
|
|
|
//
|
|
|
|
// Copyright (c) 1999-2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
// Revisions: 07/07/99 a-peterc Created
|
|
//
|
|
//=================================================================
|
|
#ifndef _CNDISAPI_H_
|
|
#define _CNDISAPI_H_
|
|
|
|
class CNdisApi
|
|
{
|
|
private:
|
|
|
|
protected:
|
|
public:
|
|
|
|
//=================================================
|
|
// Constructor/destructor
|
|
//=================================================
|
|
CNdisApi();
|
|
~CNdisApi();
|
|
|
|
UINT PnpUpdateGateway( PCWSTR a_pAdapter ) ;
|
|
|
|
UINT PnpUpdateNbtAdapter( PCWSTR a_pAdapter ) ;
|
|
|
|
UINT PnpUpdateNbtGlobal(
|
|
|
|
BOOL a_fLmhostsFileSet,
|
|
BOOL a_fEnableLmHosts
|
|
) ;
|
|
|
|
UINT PnpUpdateIpxGlobal() ;
|
|
UINT PnpUpdateIpxAdapter( PCWSTR a_pAdapter, BOOL a_fAuto ) ;
|
|
};
|
|
|
|
#endif _CNDISAPI_H_
|