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.

56 lines
1.2 KiB

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 IOBASE NDIS_STRING_CONST("IOADDRESS")
  23. #define INTERRUPT NDIS_STRING_CONST("INTERRUPT")
  24. #define MAXMULTICAST NDIS_STRING_CONST("MAXMULTICASTLIST")
  25. #define NETWORK_ADDRESS NDIS_STRING_CONST("NETADDRESS")
  26. #define MEMORYMAPPED NDIS_STRING_CONST("MEMORYMAPPED")
  27. #define TRANSCEIVER NDIS_STRING_CONST("TRANSCEIVER")
  28. #else // NDIS3
  29. #define IOBASE NDIS_STRING_CONST("IoBaseAddress")
  30. #define INTERRUPT NDIS_STRING_CONST("InterruptNumber")
  31. #define MAXMULTICAST NDIS_STRING_CONST("MaximumMulticastList")
  32. #define NETWORK_ADDRESS NDIS_STRING_CONST("NetworkAddress")
  33. #define MEMORYMAPPED NDIS_STRING_CONST("MemoryMapped")
  34. #define TRANSCEIVER NDIS_STRING_CONST("Transceiver")
  35. #endif