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.

21 lines
448 B

  1. //
  2. // classchk.h
  3. //
  4. #define CLASSCHK_SOMETHINGODD 0x12340001
  5. // Some unknown error has occured
  6. #define CLASSCHK_ERROR 0x1234FFFF
  7. #define VERB_LEVEL_ERROR 0x01
  8. #define VERB_LEVEL_WARN 0x02
  9. #define VERB_LEVEL_WHINE 0x04
  10. #define VERB_LEVEL_TRACE 0x10
  11. #define VERB_LEVEL_ITRACE 0x20
  12. #define VERB_LEVEL_IWARN 0x40
  13. #define VERB_LEVEL_IERRROR 0x80
  14. extern DWORD g_VerbosityLevel;
  15. #define VERBOSITY( level, x) if( level & g_VerbosityLevel ) x