Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
ec0af6dc
Commit
ec0af6dc
authored
Oct 29, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Silence a couple of C++ oriented requests in SymGetTypeInfo().
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7bde153a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
type.c
dlls/dbghelp/type.c
+19
-3
No files found.
dlls/dbghelp/type.c
View file @
ec0af6dc
...
...
@@ -991,10 +991,26 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
X
(
DWORD
)
=
symt_ptr2index
(
module
,
((
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
case
TI_GET_SYMINDEX
:
/* not very useful as it is...
* native sometimes (eg for UDT) return id of another instance
* of the same UDT definition... maybe forward declaration?
*/
X
(
DWORD
)
=
symt_ptr2index
(
module
,
type
);
break
;
/* FIXME: we don't support properly C++ for now */
case
TI_GET_VIRTUALBASECLASS
:
case
TI_GET_VIRTUALTABLESHAPEID
:
case
TI_GET_VIRTUALBASEPOINTEROFFSET
:
case
TI_GET_CLASSPARENTID
:
case
TI_GET_THISADJUST
:
case
TI_GET_VIRTUALBASEOFFSET
:
case
TI_GET_VIRTUALBASEDISPINDEX
:
case
TI_GET_IS_REFERENCE
:
case
TI_GET_INDIRECTVIRTUALBASECLASS
:
case
TI_GET_VIRTUALBASETABLETYPE
:
case
TI_GET_OBJECTPOINTERTYPE
:
return
FALSE
;
#undef X
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment