[svn] / tags / release-1_1_1-final / xvidcore / dshow / src / debug.c Repository:
ViewVC logotype

View of /tags/release-1_1_1-final/xvidcore/dshow/src/debug.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1724 - (download) (annotate)
Tue Jul 11 19:11:38 2006 UTC (17 years, 11 months ago)
File size: 286 byte(s)
This commit was manufactured by cvs2svn to create tag 'release-1_1_1-final'.
#include "debug.h"
#include <stdarg.h>
#include <windows.h>

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

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

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

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4