#include #include #include #include #include #if DBG void __cdecl dprintf(LPTSTR szFormat, ...) { static TCHAR tmpStr[1024]; va_list marker; va_start(marker, szFormat); wvsprintf(tmpStr, szFormat, marker); OutputDebugString(tmpStr); va_end(marker); } // dprintf #endif