Hi all,

I'm committing the attached patch, to fix some listview related stuff,
as described here:
http://msdn2.microsoft.com/en-us/library/aa453423.aspx

Cheers,
Pedro Alves

2006-11-16  Pedro Alves  <[EMAIL PROTECTED]>

   * include/commctrl.h (LVCF_IMAGE, LVCF_ORDER) : Also declare on
   Windows CE >= 2.
   (LVCOLUMNW) : Use the version with iImage and iOrder
   on Windows CE >= 2.

Index: include/commctrl.h
===================================================================
--- include/commctrl.h  (revisão 777)
+++ include/commctrl.h  (cópia de trabalho)
@@ -1147,7 +1147,7 @@
 #define LVCF_WIDTH     2
 #define LVCF_TEXT      4
 #define LVCF_SUBITEM   8
-#if (_WIN32_IE >= 0x0300)
+#if (_WIN32_IE >= 0x0300) || (_WIN32_WCE >= 0x200)
 #define LVCF_IMAGE 16
 #define LVCF_ORDER 32
 #endif
@@ -2504,7 +2504,7 @@
        LPWSTR pszText;
        int cchTextMax;
        int iSubItem;
-#if (_WIN32_IE >= 0x0300)
+#if (_WIN32_IE >= 0x0300) || (_WIN32_WCE >= 0x200)
        int iImage;
        int iOrder;
 #endif
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to