Windows2003-3790/inetsrv/iis/admin/w3ext/iisdebug.h
2020-09-30 16:53:55 +02:00

54 lines
1.3 KiB
C

#include "stdafx.h"
#include "debugdefs.h"
extern g_iDebugOutputLevel;
#if defined(_DEBUG) || DBG
#define DEBUG_FLAG
#endif
#ifdef DEBUG_FLAG
inline void _cdecl DebugTraceHelp(DWORD_PTR dwWinHelpID)
{
// Only do this if the flag is set.
if (0 != g_iDebugOutputLevel)
{
if (DEBUG_FLAG_HELP & g_iDebugOutputLevel)
{
TCHAR szBuffer[30];
_stprintf(szBuffer,_T("WinHelp:0x%x,%d\r\n"),dwWinHelpID,dwWinHelpID);
OutputDebugString(szBuffer);
}
}
return;
}
inline void _cdecl DebugTrace(LPTSTR lpszFormat, ...)
{
// Only do this if the flag is set.
if (0 != g_iDebugOutputLevel)
{
if (DEBUG_FLAG_MODULE_W3EXT & g_iDebugOutputLevel)
{
int nBuf;
TCHAR szBuffer[_MAX_PATH];
va_list args;
va_start(args, lpszFormat);
nBuf = _vsntprintf(szBuffer, sizeof(szBuffer)/sizeof(szBuffer[0]), lpszFormat, args);
OutputDebugString(szBuffer);
va_end(args);
// if it does not end if '\r\n' then make one.
int nLen = _tcslen(szBuffer);
if (szBuffer[nLen-1] != _T('\n')){OutputDebugString(_T("\r\n"));}
}
}
}
#else
inline void _cdecl DebugTraceHelp(DWORD_PTR dwWinHelpID){}
inline void _cdecl DebugTrace(LPTSTR , ...){}
#endif
void GetOutputDebugFlag(void);