From 752a260402a51f3d5d02d1625e2a4cb192f69faf Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Wed, 6 Feb 2008 21:55:53 +0100 Subject: [PATCH] dbghelp: Added basic support for base class information. As we don't support C++ for now, we just return FALSE for all cases. --- dlls/dbghelp/type.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dlls/dbghelp/type.c b/dlls/dbghelp/type.c index 66757cd1c5..a3eeeee377 100644 --- a/dlls/dbghelp/type.c +++ b/dlls/dbghelp/type.c @@ -803,10 +803,15 @@ BOOL symt_get_info(const struct symt* type, IMAGEHLP_SYMBOL_TYPE_INFO req, X(DWORD) = (DWORD)((const struct symt_array*)type)->index_type; break; + case TI_GET_CLASSPARENTID: + /* FIXME: we don't support properly C++ for now, pretend this symbol doesn't + * belong to a parent class + */ + return FALSE; + #undef X case TI_GET_ADDRESSOFFSET: - case TI_GET_CLASSPARENTID: case TI_GET_SYMINDEX: case TI_GET_THISADJUST: case TI_GET_VIRTUALBASECLASS: -- 2.32.0.93.g670b81a890