[PSDK] "Fix" _SYMBOL_INFO structure, by replacing "info" member with a union of Index (correct member name) and info (required by wine code)

svn path=/trunk/; revision=71029
This commit is contained in:
Timo Kreuzer
2016-03-20 17:11:49 +00:00
parent f8ab19dde0
commit b9ead554ad
+4 -1
View File
@@ -1065,7 +1065,10 @@ typedef struct _SYMBOL_INFO
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;