home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ndissrc.zip / KEYWORDS.H < prev    next >
Text File  |  1996-02-07  |  769b  |  34 lines

  1. /*++
  2.  
  3. Module Name:
  4.  
  5.     keywords.h
  6.  
  7. Abstract:
  8.  
  9.     Contains all Ndis2 and Ndis3 mac-specific keywords.
  10.  
  11.  
  12. --*/
  13. #ifndef NDIS2
  14. #define NDIS2 0
  15. #endif
  16.  
  17. #if NDIS2
  18.  
  19. #define IOADDRESS  NDIS_STRING_CONST("IOBASE")
  20. #define INTERRUPT  NDIS_STRING_CONST("INTERRUPT")
  21. #define MAX_MULTICAST_LIST  NDIS_STRING_CONST("MAXMULTICAST")
  22. #define NETWORK_ADDRESS  NDIS_STRING_CONST("NETADDRESS")
  23. #define BUS_TYPE  NDIS_STRING_CONST("BusType")
  24.  
  25. #else // NDIS3
  26.  
  27. #define IOADDRESS  NDIS_STRING_CONST("IoBaseAddress")
  28. #define INTERRUPT  NDIS_STRING_CONST("InterruptNumber")
  29. #define MAX_MULTICAST_LIST  NDIS_STRING_CONST("MaximumMulticastList")
  30. #define NETWORK_ADDRESS  NDIS_STRING_CONST("NetworkAddress")
  31. #define BUS_TYPE  NDIS_STRING_CONST("BusType")
  32.  
  33. #endif
  34.