windows-nt/Source/XPSP1/NT/enduser/netmeeting/av/dcap/32/debug.cpp
2020-09-26 16:20:57 +08:00

18 lines
234 B
C++

#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