void OutputDebugStringf(char *fmt, ...)

这是来自xvid中的一个函数:

#include "debug.h"
#include <stdarg.h>
#include <windows.h>

#include <stdio.h> /* vsprintf */
#define DPRINTF_BUF_SZ  1024

void OutputDebugStringf(char *fmt, ...)
{
#ifdef _DEBUG
 va_list args;
 char buf[DPRINTF_BUF_SZ];

 va_start(args, fmt);
 vsprintf(buf, fmt, args);
 OutputDebugString(buf);
#endif
}

 

你可能感兴趣的:(void OutputDebugStringf(char *fmt, ...))