Use CHAR instead of char in STRRET structure (as documented in MSDN). Fixes compilation of shell32 with MSVC.

svn path=/trunk/; revision=53705
This commit is contained in:
Timo Kreuzer 2011-09-13 21:20:46 +00:00
parent a6a01dd912
commit 57b01f1a06

View file

@ -66,7 +66,7 @@ typedef struct _STRRET
{
[case(STRRET_WSTR)][string] LPWSTR pOleStr; /* OLESTR that will be freed */
[case(STRRET_OFFSET)] UINT uOffset; /* Offset into SHITEMID (ANSI) */
[case(STRRET_CSTR)] char cStr[MAX_PATH]; /* ANSI Buffer */
[case(STRRET_CSTR)] CHAR cStr[MAX_PATH]; /* ANSI Buffer */
} DUMMYUNIONNAME;
} STRRET, *LPSTRRET;
cpp_quote("#include <poppack.h>")