summaryrefslogtreecommitdiffstats
path: root/private/ntos/ndis/elnkmc/keywords.h
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/ntos/ndis/elnkmc/keywords.h
downloadNT4.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/elnkmc/keywords.h')
-rw-r--r--private/ntos/ndis/elnkmc/keywords.h47
1 files changed, 47 insertions, 0 deletions
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