Add debugstr_rect alias for consistency with other debugging functions.

Mike Hearn mike at navi.cx
Sat Aug 7 06:53:20 CDT 2004


The lack of this confused me for a few minutes, might as well stick it in.

Mike Hearn <mike at navi.cx>
Add debugstr_rect alias for consistency with other debugging functions.

--- include/wine/debug.h.~1.12.~	2003-11-18 20:47:48.000000000 +0000
+++ include/wine/debug.h	2004-08-05 21:47:26.137932928 +0100
@@ -219,6 +219,7 @@
 inline static const char *debugstr_guid( const struct _GUID *id ) { return wine_dbgstr_guid(id); }
 inline static const char *debugstr_a( const char *s )  { return wine_dbgstr_an( s, -1 ); }
 inline static const char *debugstr_w( const WCHAR *s ) { return wine_dbgstr_wn( s, -1 ); }
+inline static const char *debugstr_rect( const RECT *r ) { return wine_dbgstr_rect( r ); }
 
 #define TRACE                      WINE_TRACE
 #define TRACE_(ch)                 WINE_TRACE_(ch)





More information about the wine-patches mailing list