shell32: Fix the *CPLINFO* lData field type.

Francois Gouget fgouget at free.fr
Fri Apr 8 05:03:39 CDT 2011


---
 include/cpl.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/cpl.h b/include/cpl.h
index 5c382ff..adabeba 100644
--- a/include/cpl.h
+++ b/include/cpl.h
@@ -36,7 +36,7 @@ typedef struct tagCPLINFO {
     int     idIcon;
     int     idName;
     int     idInfo;
-    LONG    lData;
+    LONG_PTR lData;
 } CPLINFO, *LPCPLINFO;
 
 typedef struct tagNEWCPLINFOA
@@ -44,7 +44,7 @@ typedef struct tagNEWCPLINFOA
     DWORD   dwSize;
     DWORD   dwFlags;
     DWORD   dwHelpContext;
-    LONG    lData;
+    LONG_PTR lData;
     HICON   hIcon;
     CHAR    szName[32];
     CHAR    szInfo[64];
@@ -56,7 +56,7 @@ typedef struct tagNEWCPLINFOW
     DWORD   dwSize;
     DWORD   dwFlags;
     DWORD   dwHelpContext;
-    LONG    lData;
+    LONG_PTR lData;
     HICON   hIcon;
     WCHAR   szName[32];
     WCHAR   szInfo[64];
-- 
1.7.4.1




More information about the wine-patches mailing list