mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user