[svn] / branches / release-1_3-branch / xvidcore / dshow / src / debug.c Repository:
ViewVC logotype

View of /branches/release-1_3-branch/xvidcore/dshow/src/debug.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1985 - (download) (annotate)
Wed May 18 09:02:35 2011 UTC (12 years, 11 months ago) by Isibaar
File size: 307 byte(s)
enabled auto-props property
#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
}

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