Windows NT 4.0 source code leak
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.

47 lines
725 B

4 years ago
  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. keywords.h
  5. Abstract:
  6. Contains all Ndis2 and Ndis3 mac-specific keywords.
  7. Author:
  8. Bob Noradki
  9. Environment:
  10. This driver is expected to work in DOS, OS2 and NT at the equivalent
  11. of kernal mode.
  12. Architecturally, there is an assumption in this driver that we are
  13. on a little endian machine.
  14. Notes:
  15. optional-notes
  16. Revision History:
  17. --*/
  18. #ifndef NDIS2
  19. #define NDIS2 0
  20. #endif
  21. #if NDIS2
  22. #define NETWORK_ADDRESS NDIS_STRING_CONST("NETADDRESS")
  23. #define IOBASE NDIS_STRING_CONST("IOBASE")
  24. #else // NDIS3
  25. #define NETWORK_ADDRESS NDIS_STRING_CONST("NetworkAddress")
  26. #define IOBASE NDIS_STRING_CONST("IoBaseAddress")
  27. #endif