Fix POINTS definition for WORDS_BIGENDIAN case

Dmitry Timoshkov dmitry at baikal.ru
Thu Jun 16 22:58:31 CDT 2005


Hello,

PSDK has something like this one. MAKEPOINTS macro can enabled now.

Changelog:
    Dmitry Timoshkov <dmitry at codeweavers.com>
    Fixed POINTS definition for WORDS_BIGENDIAN case.

--- cvs/hq/wine/include/windef.h	Mon Apr 11 14:39:54 2005
+++ wine/include/windef.h	Fri Jun 17 03:47:42 2005
@@ -315,8 +315,13 @@ typedef struct _POINTL
 
 typedef struct tagPOINTS
 {
+#ifdef WORDS_BIGENDIAN
+    SHORT y;
+    SHORT x;
+#else
     SHORT x;
     SHORT y;
+#endif
 } POINTS, *PPOINTS, *LPPOINTS;
 
 /* The RECT structure */






More information about the wine-patches mailing list