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
752a2604
Commit
752a2604
authored
Feb 06, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Added basic support for base class information.
As we don't support C++ for now, we just return FALSE for all cases.
parent
a4dfe1b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
type.c
dlls/dbghelp/type.c
+6
-1
No files found.
dlls/dbghelp/type.c
View file @
752a2604
...
@@ -803,10 +803,15 @@ BOOL symt_get_info(const struct symt* type, IMAGEHLP_SYMBOL_TYPE_INFO req,
...
@@ -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
;
X
(
DWORD
)
=
(
DWORD
)((
const
struct
symt_array
*
)
type
)
->
index_type
;
break
;
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
#undef X
case
TI_GET_ADDRESSOFFSET
:
case
TI_GET_ADDRESSOFFSET
:
case
TI_GET_CLASSPARENTID
:
case
TI_GET_SYMINDEX
:
case
TI_GET_SYMINDEX
:
case
TI_GET_THISADJUST
:
case
TI_GET_THISADJUST
:
case
TI_GET_VIRTUALBASECLASS
:
case
TI_GET_VIRTUALBASECLASS
:
...
...
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