2020-09-30 17:12:29 +02:00

55 lines
1.1 KiB
C

/*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
keywords.h
Abstract:
Contains all Ndis2 and Ndis3 mac-specific keywords.
Author:
Bob Noradki
Environment:
This driver is expected to work in DOS, OS2 and NT at the equivalent
of kernal mode.
Architecturally, there is an assumption in this driver that we are
on a little endian machine.
Notes:
optional-notes
Revision History:
--*/
#ifndef NDIS2
#define NDIS2 0
#endif
#if NDIS2
#define SLOTNUMBER NDIS_STRING_CONST("SLOTNUMBER")
#define MAXPACKETSIZE NDIS_STRING_CONST("MAXPACKETSIZE")
#define IOADDRESS NDIS_STRING_CONST("IOBASE")
#define NETWORK_ADDRESS NDIS_STRING_CONST("NETADDRESS")
#define TOKEN_RELEASE NDIS_STRING_CONST("EARLYTOKENRELEASE")
#else // NDIS3
#define SLOTNUMBER NDIS_STRING_CONST("SlotNumber")
#define MAXPACKETSIZE NDIS_STRING_CONST("MaximumPacketSize")
#define IOADDRESS NDIS_STRING_CONST("IoBaseAddress")
#define NETWORK_ADDRESS NDIS_STRING_CONST("NetworkAddress")
#define TOKEN_RELEASE NDIS_STRING_CONST("EarlyTokenRelease")
#endif