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
768bb93f
Commit
768bb93f
authored
Oct 13, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Dump MSC's S_UNAMESPACE entries.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bad36875
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
mscvpdb.h
include/wine/mscvpdb.h
+15
-0
msc.c
tools/winedump/msc.c
+8
-0
No files found.
include/wine/mscvpdb.h
View file @
768bb93f
...
...
@@ -1958,6 +1958,20 @@ union codeview_symbol
unsigned
short
varflags
;
char
name
[
1
];
}
file_static_v3
;
struct
{
unsigned
short
int
len
;
unsigned
short
int
id
;
struct
p_string
pname
;
}
unamespace_v2
;
struct
{
unsigned
short
int
len
;
unsigned
short
int
id
;
unsigned
char
name
[
1
];
}
unamespace_v3
;
};
enum
BinaryAnnotationOpcode
...
...
@@ -2031,6 +2045,7 @@ enum BinaryAnnotationOpcode
#define S_GTHREAD32_ST 0x100f
#define S_FRAMEPROC 0x1012
#define S_COMPILE2_ST 0x1013
#define S_UNAMESPACE_ST 0x1029
#define S_OBJNAME 0x1101
#define S_THUNK32 0x1102
...
...
tools/winedump/msc.c
View file @
768bb93f
...
...
@@ -1839,6 +1839,14 @@ BOOL codeview_dump_symbols(const void* root, unsigned long size)
get_varflags
(
sym
->
file_static_v3
.
varflags
));
break
;
case
S_UNAMESPACE_ST
:
printf
(
"UNameSpace V2 '%s'
\n
"
,
p_string
(
&
sym
->
unamespace_v2
.
pname
));
break
;
case
S_UNAMESPACE
:
printf
(
"UNameSpace V3 '%s'
\n
"
,
sym
->
unamespace_v3
.
name
);
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