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

View of /tags/release-1_3_3/dshow/src/debug.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2084 - (download) (annotate)
Tue Apr 8 20:33:59 2014 UTC (10 years ago) by Isibaar
File size: 307 byte(s)
Tag to release-1_3_3
#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