From b9ead554ad454d02de558cc1bc18db1e66180412 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sun, 20 Mar 2016 17:11:49 +0000 Subject: [PATCH] [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 --- reactos/include/psdk/dbghelp.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reactos/include/psdk/dbghelp.h b/reactos/include/psdk/dbghelp.h index 31d9d1b298f..0ffc36b8a2a 100644 --- a/reactos/include/psdk/dbghelp.h +++ b/reactos/include/psdk/dbghelp.h @@ -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; -- 2.17.1