]> git.saurik.com Git - wxWidgets.git/commitdiff
mingw32/cygwin compilation fixes
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 27 Jul 2001 20:05:07 +0000 (20:05 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 27 Jul 2001 20:05:07 +0000 (20:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11196 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/listctrl.cpp

index 59abe4c9c536d7c31d06c00a142386902c9aea19..52f37500cb4214c9cb82dcae54a5475d097c5a75 100644 (file)
     #define LVS_OWNERDATA 0x1000
 #endif
 
+// mingw32/cygwin don't have declarations for comctl32.dll 4.70+ stuff
+#ifndef NM_CACHEHINT
+    typedef struct tagNMLVCACHEHINT
+    {
+        NMHDR   hdr;
+        int     iFrom;
+        int     iTo;
+    } NMLVCACHEHINT;
+
+    #define NM_CACHEHINT NMLVCACHEHINT
+#endif
+
+#ifndef LVN_ODCACHEHINT
+    #define LVN_ODCACHEHINT (-113)
+#endif
+
 // ----------------------------------------------------------------------------
 // private functions
 // ----------------------------------------------------------------------------