#include <stdio.h>
#include <stdarg.h>
void DebugPrintf(const char * ptzFormat, ...)
{
va_list vlArgs;
char tzText[1024];
va_start(vlArgs, ptzFormat);
vsprintf(tzText, ptzFormat, vlArgs);
OutputDebugStringA(tzText);
va_end(vlArgs);
}
#include <stdio.h>
#include <stdarg.h>
void DebugPrintf(const char * ptzFormat, ...)
{
va_list vlArgs;
char tzText[1024];
va_start(vlArgs, ptzFormat);
vsprintf(tzText, ptzFormat, vlArgs);
OutputDebugStringA(tzText);
va_end(vlArgs);
}