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.
 
 
 
 
 
 

45 lines
935 B

/*******************************************************************************
*
* (C) COPYRIGHT MICROSOFT CORP., 1993-1994
*
* TITLE: REGDEBUG.H
*
* VERSION: 4.01
*
* AUTHOR: Tracy Sharpe
*
* DATE: 05 Mar 1994
*
* Debug routines for the Registry Editor.
*
********************************************************************************
*
* CHANGE LOG:
*
* DATE REV DESCRIPTION
* ----------- --- -------------------------------------------------------------
* 05 Mar 1994 TCS Original implementation.
*
*******************************************************************************/
#ifndef _INC_REGDEBUG
#define _INC_REGDEBUG
#if DBG
VOID
CDECL
_DbgPrintf(
PSTR pFormatString,
...
);
#define DebugPrintf(x) _DbgPrintf ##x
#else // DBG
#define DebugPrintf(x)
#endif // DBG
#endif // _INC_REGDEBUG