RECT def

Dimitrie O. Paun dpaun at rogers.com
Thu Dec 19 13:35:07 CST 2002


ChangeLog
  MS uses LONG for the members of RECT.
  (With help from Mehmet YASAR, and Vincent Béron).

Index: include/windef.h
===================================================================
RCS file: /var/cvs/wine/include/windef.h,v
retrieving revision 1.80
diff -u -r1.80 windef.h
--- include/windef.h	10 Dec 2002 22:56:44 -0000	1.80
+++ include/windef.h	19 Dec 2002 19:33:09 -0000
@@ -322,10 +322,10 @@
 /* The RECT structure */
 typedef struct tagRECT
 {
-    INT  left;
-    INT  top;
-    INT  right;
-    INT  bottom;
+    LONG left;
+    LONG top;
+    LONG right;
+    LONG bottom;
 } RECT, *PRECT, *LPRECT;
 typedef const RECT *LPCRECT;
 


-- 
Dimi.




More information about the wine-patches mailing list