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.

50 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1989-1999 Microsoft Corporation
  3. Module Name:
  4. nulmrxnp.h
  5. Abstract:
  6. This module includes all network provider router interface related
  7. definitions for the sample
  8. Notes:
  9. This module has been built and tested only in UNICODE environment
  10. --*/
  11. #ifndef _NULMRXNP_H_
  12. #define _NULMRXNP_H_
  13. #define NULMRXNP_DEBUG_CALL 0x1
  14. #define NULMRXNP_DEBUG_ERROR 0x2
  15. #define NULMRXNP_DEBUG_INFO 0x4
  16. extern DWORD NulMRxNpDebugLevel;
  17. #define TRACE_CALL(Args) \
  18. if (NulMRxNpDebugLevel & NULMRXNP_DEBUG_CALL) { \
  19. DbgPrint##Args; \
  20. }
  21. #define TRACE_ERROR(Args) \
  22. if (NulMRxNpDebugLevel & NULMRXNP_DEBUG_ERROR) { \
  23. DbgPrint##Args; \
  24. }
  25. #define TRACE_INFO(Args) \
  26. if (NulMRxNpDebugLevel & NULMRXNP_DEBUG_INFO) { \
  27. DbgPrint##Args; \
  28. }
  29. typedef struct _NULMRXNP_ENUMERATION_HANDLE_ {
  30. INT LastIndex;
  31. } NULMRXNP_ENUMERATION_HANDLE,
  32. *PNULMRXNP_ENUMERATION_HANDLE;
  33. #endif