windows-nt/Source/XPSP1/NT/enduser/netmeeting/av/dcap/32nt/debug.cpp

18 lines
234 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include "Precomp.h"
#ifdef _DEBUG
HDBGZONE ghDbgZoneCap = NULL;
int WINAPI CapDbgPrintf(LPTSTR lpszFormat, ... )
{
va_list v1;
va_start(v1, lpszFormat);
DbgPrintf("DCAP", lpszFormat, v1);
va_end(v1);
return TRUE;
}
#endif