Leaked source code of windows server 2003
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.

43 lines
1.0 KiB

  1. #ifndef _SNMP_MIPXMIB_
  2. #define _SNMP_MIPXMIB_
  3. #define DBG_LOAD 0x00000001
  4. #define DBG_IPXBASE 0x00000010
  5. #define DBG_IPXINTERFACES 0x00000020
  6. #define DBG_DESTTABLE 0x00000040
  7. #define DBG_STATICROUTES 0x00000080
  8. #define DBG_SERVERTABLE 0x00000100
  9. #define DBG_STATICSERVERS 0x00000200
  10. #define DBG_RIPSAPBASE 0x00001000
  11. #define DBG_RIPINTERFACES 0x00002000
  12. #define DBG_SAPINTERFACES 0x00004000
  13. #define DBG_NIPXBASICSYSENTRY 0x00010000
  14. #define DBG_NIPXADVSYSENTRY 0x00020000
  15. #define DBG_NIPXCIRCENTRY 0x00040000
  16. #define DBG_NIPXDESTENTRY 0x00080000
  17. #define DBG_NIPXSTATICRTENTRY 0x00100000
  18. #define DBG_NIPXSERVENTRY 0x00200000
  19. #define DBG_NIPXDESTSERVENTRY 0x00400000
  20. #define DBG_NIPXSTATICSERVENTRY 0x00800000
  21. #define DEF_DBGLEVEL 0x00000001
  22. #if DBG
  23. extern DWORD DbgLevel;
  24. #define DbgTrace(level,args) \
  25. do { \
  26. if (level&&DbgLevel) \
  27. DbgPrint args; \
  28. } \
  29. while (0)
  30. #else // if DBG
  31. #define DbgTrace(level,args)
  32. #endif // if DBG
  33. #endif