Author: tkreuzer
Date: Tue Sep 13 21:20:46 2011
New Revision: 53705
URL:
http://svn.reactos.org/svn/reactos?rev=53705&view=rev
Log:
[PSDK]
Use CHAR instead of char in STRRET structure (as documented in MSDN). Fixes compilation of
shell32 with MSVC.
Modified:
trunk/reactos/include/psdk/shtypes.idl
Modified: trunk/reactos/include/psdk/shtypes.idl
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/shtypes.idl?r…
==============================================================================
--- trunk/reactos/include/psdk/shtypes.idl [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/shtypes.idl [iso-8859-1] Tue Sep 13 21:20:46 2011
@@ -66,7 +66,7 @@
{
[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>")