Francois Gouget : shell32: Fix the *CPLINFO* lData field type.

Alexandre Julliard julliard at winehq.org
Fri Apr 8 10:50:58 CDT 2011


Module: wine
Branch: master
Commit: 4cb9c161436fb7fd1223f257a18cf297596198ba
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4cb9c161436fb7fd1223f257a18cf297596198ba

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Apr  8 12:03:39 2011 +0200

shell32: Fix the *CPLINFO* lData field type.

---

 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];




More information about the wine-cvs mailing list