Source code of Windows XP (NT5)
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.

41 lines
502 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. SDPSPDBG.h
  5. Abstract:
  6. Definitions for multicast service provider debugging support.
  7. Author:
  8. Mu Han (muhan) 1-April-1997
  9. --*/
  10. #ifndef _SDPSPDBG_H
  11. #define _SDPSPDBG_H
  12. #ifdef DBG
  13. #define FAIL 1
  14. #define WARN 2
  15. #define INFO 3
  16. #define TRCE 4
  17. #define ELSE 5
  18. #define DBGOUT(arg) DbgPrt arg
  19. VOID DbgPrt(IN int DbgLevel, IN PCHAR DbgMessage, IN ...);
  20. #else // DBG
  21. #define DBGOUT(arg)
  22. #endif // DBG
  23. #endif // _SDPSPDBG_H