Author: tkreuzer
Date: Sun Mar 20 17:11:49 2016
New Revision: 71029
URL:
http://svn.reactos.org/svn/reactos?rev=71029&view=rev
Log:
[PSDK] "Fix" _SYMBOL_INFO structure, by replacing "info" member with a
union of Index (correct member name) and info (required by wine code)
Modified:
trunk/reactos/include/psdk/dbghelp.h
Modified: trunk/reactos/include/psdk/dbghelp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/dbghelp.h?rev…
==============================================================================
--- trunk/reactos/include/psdk/dbghelp.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/dbghelp.h [iso-8859-1] Sun Mar 20 17:11:49 2016
@@ -1065,7 +1065,10 @@
ULONG SizeOfStruct;
ULONG TypeIndex;
ULONG64 Reserved[2];
- ULONG info; /* sdk states info, while MSDN says it's Index... */
+ union {
+ ULONG info; /* wrong, but wine needs it */
+ ULONG Index;
+ };
ULONG Size;
ULONG64 ModBase;
ULONG Flags;