diff options
author | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
---|---|---|
committer | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
commit | e611b132f9b8abe35b362e5870b74bce94a1e58e (patch) | |
tree | a5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/ntos/ndis/ndiswan/global.h | |
download | NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2 NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip |
Diffstat (limited to 'private/ntos/ndis/ndiswan/global.h')
-rw-r--r-- | private/ntos/ndis/ndiswan/global.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/private/ntos/ndis/ndiswan/global.h b/private/ntos/ndis/ndiswan/global.h new file mode 100644 index 000000000..4f60ef906 --- /dev/null +++ b/private/ntos/ndis/ndiswan/global.h @@ -0,0 +1,52 @@ +/*++ + +Copyright (c) 1990-1995 Microsoft Corporation + +Module Name: + + Global.h + +Abstract: + + This file contains global structures for the NdisWan driver. + +Author: + + Tony Bell (TonyBe) June 06, 1995 + +Environment: + + Kernel Mode + +Revision History: + + TonyBe 06/06/95 Created + +--*/ + +#ifndef _NDISWAN_GLOBAL_ +#define _NDISWAN_GLOBAL_ + +extern NDISWANCB NdisWanCB; // Global ndiswan control block + +extern WAN_GLOBAL_LIST ThresholdEventQueue; // Queue to hold threshold events + +extern WAN_GLOBAL_LIST RecvPacketQueue; // Queue to hold ppp receive packets + +extern WAN_GLOBAL_LIST FreeBundleCBList; // List of free BundleCB's + +extern WAN_GLOBAL_LIST FreeProtocolCBList; // List of free ProtocolCB's + +extern WAN_GLOBAL_LIST AdapterCBList; // List of NdisWan AdapterCB's + +extern WAN_GLOBAL_LIST WanAdapterCBList; // List of WAN Miniport structures + +extern WAN_GLOBAL_LIST GlobalRecvDescPool; // Global pool of free recvdesc's + +extern PCONNECTION_TABLE ConnectionTable; // Pointer to connection table + +extern PPPP_PROTOCOL_TABLE PPP_ProtocolTable; // Pointer to the PPP/Protocol value lookup table + +extern NDIS_PHYSICAL_ADDRESS HighestAcceptableAddress; + +#endif // _NDISWAN_GLOBAL_ |