]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/private.h
disabled wxWin memory debugging by default
[wxWidgets.git] / include / wx / msw / private.h
index 23aaba1766f26b9e2c65bcfbe623a19fa484403b..ab9b6714555a4d4f6f7f95ff166be15e00be3c98 100644 (file)
@@ -28,6 +28,9 @@
 // undefine conflicting symbols which were defined in windows.h
 #include "wx/msw/winundef.h"
 
+// Include fixes for MSLU:
+#include "wx/msw/mslu.h"
+
 #include "wx/log.h"
 
 class WXDLLEXPORT wxFont;
@@ -203,6 +206,11 @@ extern LONG APIENTRY _EXPORT
 
 // make conversion from wxColour and COLORREF a bit less painful
 inline COLORREF wxColourToRGB(const wxColour& c)
+{
+    return RGB(c.Red(), c.Green(), c.Blue());
+}
+
+inline COLORREF wxColourToPalRGB(const wxColour& c)
 {
     return PALETTERGB(c.Red(), c.Green(), c.Blue());
 }