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.

51 lines
718 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. All rights reserved.
  4. Module Name:
  5. debug.hxx
  6. Abstract:
  7. Stub header file for extra debug routines.
  8. Author:
  9. Albert Ting (AlbertT) 16-Oct-96
  10. Revision History:
  11. --*/
  12. #ifndef _DEBUG_HXX
  13. #define _DEBUG_HXX
  14. #ifdef LINK_SPLLIB
  15. #include "spllib.hxx"
  16. #else
  17. #define DBG_NONE 0x0000
  18. #define DBG_INFO 0x0001
  19. #define DBG_WARN 0x0002
  20. #define DBG_WARNING 0x0002
  21. #define DBG_ERROR 0x0004
  22. #define DBG_TRACE 0x0008
  23. inline
  24. BOOL
  25. bSplLibInit(
  26. VOID
  27. )
  28. {
  29. return TRUE;
  30. }
  31. #define DBGMSG( Flag, Message )
  32. #define SPLASSERT( Assertion )
  33. #define MODULE_DEBUG_INIT( Print, Break )
  34. #endif // ifndef LINK_SPLLIB
  35. #endif // ifndef _DEBUG_HXX