Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7eefc9eb
Commit
7eefc9eb
authored
Mar 18, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Support for LF_VTSHAPE in MSC.
- added preliminary support for VT (virtual table) shape type record - as we don't do C++, it's just a hack to get rid of some errors
parent
e737dbec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
msc.c
dlls/dbghelp/msc.c
+9
-0
No files found.
dlls/dbghelp/msc.c
View file @
7eefc9eb
...
...
@@ -1009,6 +1009,15 @@ static struct symt* codeview_parse_one_type(struct codeview_type_parse* ctp,
type
->
mfunction_v2
.
call
);
break
;
case
LF_VTSHAPE_V1
:
/* this is an ugly hack... FIXME when we have C++ support */
if
(
!
(
symt
=
existing
))
{
char
buf
[
128
];
snprintf
(
buf
,
sizeof
(
buf
),
"__internal_vt_shape_%x
\n
"
,
curr_type
);
symt
=
&
symt_new_udt
(
ctp
->
module
,
buf
,
0
,
UdtStruct
)
->
symt
;
}
break
;
default:
FIXME
(
"Unsupported type-id leaf %x
\n
"
,
type
->
generic
.
id
);
dump
(
type
,
2
+
type
->
generic
.
len
);
...
...
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