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.
23 lines
738 B
23 lines
738 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
// File: C O M P I D . H
|
|
//
|
|
// Contents: Functions dealing with compatible ids
|
|
//
|
|
// Notes:
|
|
//
|
|
// Author: kumarp 04-September-98
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
HRESULT HrIsAdapterInstalled(IN PCWSTR szAdapterId);
|
|
HRESULT HrGetCompatibleIdsOfNetComponent(IN INetCfgComponent* pncc,
|
|
OUT PWSTR* pmszCompatibleIds);
|
|
HRESULT HrGetCompatibleIds(IN HDEVINFO hdi,
|
|
IN PSP_DEVINFO_DATA pdeid,
|
|
OUT PWSTR* pmszCompatibleIds);
|
|
|
|
|