Author: mjansen
Date: Thu Aug 4 19:11:50 2016
New Revision: 72109
URL:
http://svn.reactos.org/svn/reactos?rev=72109&view=rev
Log:
[INCLUDE/WINE] Update test.h with debug functions for POINT and SIZE.
Modified:
trunk/reactos/sdk/include/reactos/wine/test.h
Modified: trunk/reactos/sdk/include/reactos/wine/test.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/include/reactos/wine/t…
==============================================================================
--- trunk/reactos/sdk/include/reactos/wine/test.h [iso-8859-1] (original)
+++ trunk/reactos/sdk/include/reactos/wine/test.h [iso-8859-1] Thu Aug 4 19:11:50 2016
@@ -70,6 +70,8 @@
extern const char *wine_dbgstr_wn( const WCHAR *str, intptr_t n );
extern const char *wine_dbgstr_guid( const GUID *guid );
+extern const char *wine_dbgstr_point( const POINT *guid );
+extern const char *wine_dbgstr_size( const SIZE *guid );
extern const char *wine_dbgstr_rect( const RECT *rect );
static inline const char *wine_dbgstr_w( const WCHAR *s ) { return wine_dbgstr_wn( s, -1
); }
@@ -575,6 +577,36 @@
return res;
}
+const char *wine_dbgstr_point( const POINT *point )
+{
+ char *res;
+
+ if (!point) return "(null)";
+ res = get_temp_buffer( 60 );
+#ifdef __ROS_LONG64__
+ sprintf( res, "(%d,%d)", point->x, point->y );
+#else
+ sprintf( res, "(%ld,%ld)", point->x, point->y );
+#endif
+ release_temp_buffer( res, strlen(res) + 1 );
+ return res;
+}
+
+const char *wine_dbgstr_size( const SIZE *size )
+{
+ char *res;
+
+ if (!size) return "(null)";
+ res = get_temp_buffer( 60 );
+#ifdef __ROS_LONG64__
+ sprintf( res, "(%d,%d)", size->cx, size->cy );
+#else
+ sprintf( res, "(%ld,%ld)", size->cx, size->cy );
+#endif
+ release_temp_buffer( res, strlen(res) + 1 );
+ return res;
+}
+
const char *wine_dbgstr_rect( const RECT *rect )
{
char *res;