From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- private/ntos/ndis/elnkmc/keywords.h | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 private/ntos/ndis/elnkmc/keywords.h (limited to 'private/ntos/ndis/elnkmc/keywords.h') diff --git a/private/ntos/ndis/elnkmc/keywords.h b/private/ntos/ndis/elnkmc/keywords.h new file mode 100644 index 000000000..e0dc08811 --- /dev/null +++ b/private/ntos/ndis/elnkmc/keywords.h @@ -0,0 +1,47 @@ +/*++ + +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 NETWORK_ADDRESS NDIS_STRING_CONST("NETADDRESS") +#define IOBASE NDIS_STRING_CONST("IOBASE") + +#else // NDIS3 + +#define NETWORK_ADDRESS NDIS_STRING_CONST("NetworkAddress") +#define IOBASE NDIS_STRING_CONST("IoBaseAddress") +#endif -- cgit v1.2.3