Commit 4cb9c161 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shell32: Fix the *CPLINFO* lData field type.

parent 9668e1c0
...@@ -36,7 +36,7 @@ typedef struct tagCPLINFO { ...@@ -36,7 +36,7 @@ typedef struct tagCPLINFO {
int idIcon; int idIcon;
int idName; int idName;
int idInfo; int idInfo;
LONG lData; LONG_PTR lData;
} CPLINFO, *LPCPLINFO; } CPLINFO, *LPCPLINFO;
typedef struct tagNEWCPLINFOA typedef struct tagNEWCPLINFOA
...@@ -44,7 +44,7 @@ typedef struct tagNEWCPLINFOA ...@@ -44,7 +44,7 @@ typedef struct tagNEWCPLINFOA
DWORD dwSize; DWORD dwSize;
DWORD dwFlags; DWORD dwFlags;
DWORD dwHelpContext; DWORD dwHelpContext;
LONG lData; LONG_PTR lData;
HICON hIcon; HICON hIcon;
CHAR szName[32]; CHAR szName[32];
CHAR szInfo[64]; CHAR szInfo[64];
...@@ -56,7 +56,7 @@ typedef struct tagNEWCPLINFOW ...@@ -56,7 +56,7 @@ typedef struct tagNEWCPLINFOW
DWORD dwSize; DWORD dwSize;
DWORD dwFlags; DWORD dwFlags;
DWORD dwHelpContext; DWORD dwHelpContext;
LONG lData; LONG_PTR lData;
HICON hIcon; HICON hIcon;
WCHAR szName[32]; WCHAR szName[32];
WCHAR szInfo[64]; WCHAR szInfo[64];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment