CVS: winex/include/wine debug.h,1.6,1.7

[email protected] 12 Sep 2007 12:12:02 -0000
Newsgroups gmane.comp.emulators.winex.cvs
Message-ID <[email protected]>
Subject: winex/include/wine debug.h,1.6,1.7Update of /var/lib/cvsd/cvsroot/winex/include/wine
In directory agravaine:/tmp/cvs-serv5558/include/wine

Modified Files:
	debug.h 
Log Message:

- added the wine_dbgstr_longlong() and debugstr_longlong() functions to ntdll


Index: debug.h
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/include/wine/debug.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- debug.h	30 Mar 2007 20:33:56 -0000	1.6
+++ debug.h	12 Sep 2007 12:12:00 -0000	1.7
@@ -84,6 +84,7 @@
 extern const char *wine_dbgstr_wn( const WCHAR *s, int n );
 extern const char *wine_dbgstr_guid( const struct _GUID *id );
 extern const char *wine_dbgstack( unsigned int upto, CONTEXT *ctx );
+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 int wine_dbg_printf( const char *format, ... ) __WINE_PRINTF_ATTR(1,2);
@@ -124,6 +125,7 @@
 inline static const char *debugstr_an( const char * s, int n ) { return wine_dbgstr_an( s, n ); }
 inline static const char *debugstr_wn( const WCHAR *s, int n ) { return wine_dbgstr_wn( s, n ); }
 inline static const char *debugstr_guid( const struct _GUID *id ) { return wine_dbgstr_guid(id); }
+inline static const char *debugstr_longlong( ULONGLONG val ) { return wine_dbgstr_longlong(val); }
 inline static const char *debugstr_a( const char *s )  { return wine_dbgstr_an( s, 80 ); }
 inline static const char *debugstr_w( const WCHAR *s ) { return wine_dbgstr_wn( s, 80 ); }
 inline static const char *debugres_a( const char *s )  { return wine_dbgstr_an( s, 80 ); }