mirror of https://github.com/lianthony/NT4.0
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.
48 lines
871 B
48 lines
871 B
/*++
|
|
|
|
Copyright (c) 1990-1995 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
mac.h
|
|
|
|
Abstract:
|
|
|
|
NDIS wrapper definitions
|
|
|
|
Author:
|
|
|
|
|
|
Environment:
|
|
|
|
Kernel mode, FSD
|
|
|
|
Revision History:
|
|
|
|
Jun-95 Jameel Hyder Split up from a monolithic file
|
|
--*/
|
|
|
|
//
|
|
// The following are counters used for debugging
|
|
//
|
|
|
|
extern PNDIS_MAC_BLOCK ndisMacDriverList;
|
|
extern const NDIS_PHYSICAL_ADDRESS HighestAcceptableMax;
|
|
extern ULONG ndisDmaAlignment;
|
|
|
|
//
|
|
// For tracking memory allocated for shared memory
|
|
//
|
|
extern ERESOURCE SharedMemoryResource;
|
|
|
|
//
|
|
// For tracking on NT 3.1 protocols that do not use any of the filter packages.
|
|
//
|
|
extern PNDIS_OPEN_BLOCK ndisGlobalOpenList;
|
|
extern KSPIN_LOCK ndisGlobalOpenListLock;
|
|
extern KSPIN_LOCK ndisLookaheadBufferLock;
|
|
extern ULONG ndisLookaheadBufferLength;
|
|
#if defined(_ALPHA_)
|
|
extern PNDIS_LOOKAHEAD_ELEMENT ndisLookaheadBufferList;
|
|
#endif
|
|
|