[cvs] / xvidcore / dshow / src / debug.c Repository:
ViewVC logotype

View of /xvidcore/dshow/src/debug.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.2.1 - (download) (annotate)
Mon Jul 10 15:20:22 2006 UTC (17 years, 9 months ago) by Isibaar
Branch: release-1_1-branch
CVS Tags: release-1_1_1-final, release-1_1_3, release-1_1_2, release-1_1_3-final
Changes since 1.1: +0 -0 lines
- back ported some important bug fixes from head to release-1_1-branch
#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