CVS: winex/include/wine debug.h,1.7,1.8
[email protected] 12 Sep 2007 12:15:15 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/include/wine debug.h,1.7,1.8Update of /var/lib/cvsd/cvsroot/winex/include/wine
In directory agravaine:/tmp/cvs-serv6649/include/wine
Modified Files:
debug.h
Log Message:
- added the wine_dbg_sprintf() function. WineHQ's dbghelp library makes use of it.
Index: debug.h
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/include/wine/debug.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- debug.h 12 Sep 2007 12:12:00 -0000 1.7
+++ debug.h 12 Sep 2007 12:15:13 -0000 1.8
@@ -87,6 +87,7 @@
extern const char *wine_dbgstr_longlong( ULONGLONG val );
extern int wine_dbg_vprintf( const char *format, va_list args ) __WINE_PRINTF_ATTR(1,0);
+extern const char *wine_dbg_sprintf( const char *format, ... ) __WINE_PRINTF_ATTR(1, 2);
extern int wine_dbg_printf( const char *format, ... ) __WINE_PRINTF_ATTR(1,2);
extern int wine_dbg_log( enum __WINE_DEBUG_CLASS cls, const char *ch,
const char *func, const char *format, ... ) __WINE_PRINTF_ATTR(4,5);