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

Annotation of /branches/release-1_1-branch/xvidcore/dshow/src/debug.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1715 - (view) (download)

1 : suxen_drol 1689 #include "debug.h"
2 :     #include <stdarg.h>
3 :     #include <windows.h>
4 :    
5 :     #include <stdio.h> /* vsprintf */
6 :     #define DPRINTF_BUF_SZ 1024
7 :    
8 :     void OutputDebugStringf(char *fmt, ...)
9 :     {
10 :     va_list args;
11 :     char buf[DPRINTF_BUF_SZ];
12 :    
13 :     va_start(args, fmt);
14 :     vsprintf(buf, fmt, args);
15 :     OutputDebugString(buf);
16 :     }

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