]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/missing.h
fixed event generation for wxComboBox to be consistent with the other platforms and...
[wxWidgets.git] / include / wx / msw / missing.h
index ea8cd99c930aaef5a5a5d3007c113e4f56672416..accdcc2747bb635589a523e65fa8d976b9cd8794 100644 (file)
 #define EM_SETUSEMOUSEFORINPUT (WM_USER + 0x224)
 #endif
 
+#ifndef TPM_RECURSE
+#define TPM_RECURSE 1
+#endif
+
 // ----------------------------------------------------------------------------
 // ListView common control
 // Needed by listctrl.cpp
 
 #ifdef __DMC__
 
-#ifdef __DMC__
-    #ifndef _TrackMouseEvent
-        #define _TrackMouseEvent TrackMouseEvent
-    #endif
+typedef struct _OSVERSIONINFOEX {
+    DWORD dwOSVersionInfoSize;
+    DWORD dwMajorVersion;
+    DWORD dwMinorVersion;
+    DWORD dwBuildNumber;
+    DWORD dwPlatformId;
+    TCHAR szCSDVersion[ 128 ];
+    WORD  wServicePackMajor;
+    WORD  wServicePackMinor;
+    WORD  wSuiteMask;
+    BYTE  wProductType;
+    BYTE  wReserved;
+} OSVERSIONINFOEX;
+
+#ifndef _TrackMouseEvent
+    #define _TrackMouseEvent TrackMouseEvent
 #endif
 
 #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE
     #define LVSICF_NOSCROLL         0x0002
 #endif
 
+#ifndef CP_SYMBOL
+    #define CP_SYMBOL 42
+#endif
+
 // ----------------------------------------------------------------------------
 // Tree control
 // ----------------------------------------------------------------------------