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.
40 lines
1.1 KiB
40 lines
1.1 KiB
/********************************************************************************
|
|
** Copyright (c) 1998-1999 Microsoft Corporation. All Rights Reserved.
|
|
**
|
|
** Portions Copyright (c) 1998-1999 Intel Corporation
|
|
**
|
|
********************************************************************************/
|
|
|
|
#ifndef _ADAPTER_H_
|
|
#define _ADAPTER_H_
|
|
|
|
#include "shared.h"
|
|
|
|
/*****************************************************************************
|
|
* Defines
|
|
*****************************************************************************
|
|
*/
|
|
const ULONG MAX_MINIPORTS = 2;
|
|
|
|
/*****************************************************************************
|
|
* Externals
|
|
*****************************************************************************
|
|
*/
|
|
extern NTSTATUS CreateMiniportWaveICH
|
|
(
|
|
OUT PUNKNOWN * Unknown,
|
|
IN REFCLSID,
|
|
IN PUNKNOWN UnknownOuter OPTIONAL,
|
|
IN POOL_TYPE PoolType
|
|
);
|
|
|
|
extern NTSTATUS CreateMiniportTopologyICH
|
|
(
|
|
OUT PUNKNOWN * Unknown,
|
|
IN REFCLSID,
|
|
IN PUNKNOWN UnknownOuter OPTIONAL,
|
|
IN POOL_TYPE PoolType
|
|
);
|
|
|
|
#endif //_ADAPTER_H_
|
|
|