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
36961eef
Commit
36961eef
authored
Aug 24, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Aug 24, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Add support for dumping filestatic Codeview records.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d6aff64c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
mscvpdb.h
include/wine/mscvpdb.h
+10
-0
msc.c
tools/winedump/msc.c
+8
-0
No files found.
include/wine/mscvpdb.h
View file @
36961eef
...
...
@@ -1881,6 +1881,16 @@ union codeview_symbol
unsigned int invocations[0]; /* array of count entries, paires with funcs */
#endif
}
function_list_v3
;
struct
{
unsigned
short
int
len
;
unsigned
short
int
id
;
cv_typ_t
typind
;
unsigned
int
modOffset
;
unsigned
short
varflags
;
char
name
[
1
];
}
file_static_v3
;
};
enum
BinaryAnnotationOpcode
...
...
tools/winedump/msc.c
View file @
36961eef
...
...
@@ -1800,6 +1800,14 @@ BOOL codeview_dump_symbols(const void* root, unsigned long size)
sym
->
heap_alloc_site_v3
.
index
);
break
;
case
S_FILESTATIC
:
printf
(
"File-static V3 '%s' type:%04x modOff:%08x flags:%s
\n
"
,
sym
->
file_static_v3
.
name
,
sym
->
file_static_v3
.
typind
,
sym
->
file_static_v3
.
modOffset
,
get_varflags
(
sym
->
file_static_v3
.
varflags
));
break
;
default:
printf
(
"
\n\t\t
>>> Unsupported symbol-id %x sz=%d
\n
"
,
sym
->
generic
.
id
,
sym
->
generic
.
len
+
2
);
dump_data
((
const
void
*
)
sym
,
sym
->
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