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
9d10c66d
Commit
9d10c66d
authored
Jan 05, 2007
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Add support for derived types in codeview type info.
parent
b8ae9dcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
mscvpdb.h
include/wine/mscvpdb.h
+15
-0
msc.c
tools/winedump/msc.c
+18
-0
No files found.
include/wine/mscvpdb.h
View file @
9d10c66d
...
@@ -403,6 +403,21 @@ union codeview_reftype
...
@@ -403,6 +403,21 @@ union codeview_reftype
unsigned
args
[
1
];
unsigned
args
[
1
];
}
arglist_v2
;
}
arglist_v2
;
struct
{
unsigned
short
int
len
;
short
int
id
;
unsigned
short
num
;
unsigned
short
drvdcls
[
1
];
}
derived_v1
;
struct
{
unsigned
short
int
len
;
short
int
id
;
unsigned
num
;
unsigned
drvdcls
[
1
];
}
derived_v2
;
};
};
union
codeview_fieldtype
union
codeview_fieldtype
...
...
tools/winedump/msc.c
View file @
9d10c66d
...
@@ -775,6 +775,24 @@ static void codeview_dump_one_type(unsigned curr_type, const union codeview_type
...
@@ -775,6 +775,24 @@ static void codeview_dump_one_type(unsigned curr_type, const union codeview_type
}
}
break
;
break
;
case
LF_DERIVED_V1
:
printf
(
"
\t
%x => Derived V1(#%u):"
,
curr_type
,
reftype
->
derived_v1
.
num
);
for
(
i
=
0
;
i
<
reftype
->
derived_v1
.
num
;
i
++
)
{
printf
(
" %x"
,
reftype
->
derived_v1
.
drvdcls
[
i
]);
}
printf
(
"
\n
"
);
break
;
case
LF_DERIVED_V2
:
printf
(
"
\t
%x => Derived V2(#%u):"
,
curr_type
,
reftype
->
derived_v2
.
num
);
for
(
i
=
0
;
i
<
reftype
->
derived_v2
.
num
;
i
++
)
{
printf
(
" %x"
,
reftype
->
derived_v2
.
drvdcls
[
i
]);
}
printf
(
"
\n
"
);
break
;
default:
default:
printf
(
">>> Unsupported type-id %x for %x
\n
"
,
type
->
generic
.
id
,
curr_type
);
printf
(
">>> Unsupported type-id %x for %x
\n
"
,
type
->
generic
.
id
,
curr_type
);
dump_data
((
const
void
*
)
type
,
type
->
generic
.
len
+
2
,
""
);
dump_data
((
const
void
*
)
type
,
type
->
generic
.
len
+
2
,
""
);
...
...
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