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