]> git.saurik.com Git - wxWidgets.git/commitdiff
define UDM_{SETRANGE|SETPOS|GETPOS}32 if we don't have them in the headers to allow...
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 9 Mar 2006 14:04:41 +0000 (14:04 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 9 Mar 2006 14:04:41 +0000 (14:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/spinbutt.cpp

index 84da7433277d445d8368b86c2dbe626e07b545e7..a41c23f59cab9faf929563850eeed02d54e2f9d5 100644 (file)
@@ -37,6 +37,15 @@ IMPLEMENT_DYNAMIC_CLASS(wxSpinEvent, wxNotifyEvent)
 #include "wx/msw/private.h"
 #include "wx/msw/wrapcctl.h"
 
+#ifndef UDM_SETRANGE32
+    #define UDM_SETRANGE32 (WM_USER+111)
+#endif
+
+#ifndef UDM_SETPOS32
+    #define UDM_SETPOS32 (WM_USER+113)
+    #define UDM_GETPOS32 (WM_USER+114)
+#endif
+
 // ============================================================================
 // implementation
 // ============================================================================