]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
Some compilation fixes
[wxWidgets.git] / include / wx / msw / private.h
index 51e044b0226d204dee039612459b7071893d913c..15d89886ced0d9accc65c85b3d2d0539956e258a 100644 (file)
@@ -226,6 +226,15 @@ inline void wxRGBToColour(wxColour& c, COLORREF rgb)
     c.Set(GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
 }
 
+// copy Windows RECT to our wxRect
+inline void wxCopyRECTToRect(const RECT& r, wxRect& rect)
+{
+    rect.y = r.top;
+    rect.x = r.left;
+    rect.width = r.right - r.left;
+    rect.height = r.bottom - r.top;
+}
+
 // translations between HIMETRIC units (which OLE likes) and pixels (which are
 // liked by all the others) - implemented in msw/utilsexc.cpp
 extern void HIMETRICToPixel(LONG *x, LONG *y);