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 ); }
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;