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.

45 lines
924 B

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORP., 1993-1994
  4. *
  5. * TITLE: REGDEBUG.H
  6. *
  7. * VERSION: 4.01
  8. *
  9. * AUTHOR: Tracy Sharpe
  10. *
  11. * DATE: 05 Mar 1994
  12. *
  13. * Debug routines for the Registry Editor.
  14. *
  15. ********************************************************************************
  16. *
  17. * CHANGE LOG:
  18. *
  19. * DATE REV DESCRIPTION
  20. * ----------- --- -------------------------------------------------------------
  21. * 05 Mar 1994 TCS Original implementation.
  22. *
  23. *******************************************************************************/
  24. #ifndef _INC_REGDEBUG
  25. #define _INC_REGDEBUG
  26. #if (!defined(WINNT) && defined(DEBUG)) || (defined(WINNT) && DBG)
  27. VOID
  28. CDECL
  29. _DbgPrintf(
  30. PSTR pFormatString,
  31. ...
  32. );
  33. #define DebugPrintf(x) _DbgPrintf ##x
  34. #else
  35. #define DebugPrintf(x)
  36. #endif
  37. #endif // _INC_REGDEBUG