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
cff33ced
Commit
cff33ced
authored
Sep 29, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Add preliminary dumping of 0x1136 and 0x1137 symbols.
parent
ff176786
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
0 deletions
+23
-0
msc.c
dlls/dbghelp/msc.c
+2
-0
mscvpdb.h
include/wine/mscvpdb.h
+2
-0
msc.c
tools/winedump/msc.c
+19
-0
No files found.
dlls/dbghelp/msc.c
View file @
cff33ced
...
...
@@ -1729,6 +1729,8 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root
case
0x112c
:
case
S_FUNCINFO_V2
:
case
S_SECUCOOKIE_V3
:
case
S_SECTINFO_V3
:
case
S_SUBSECTINFO_V3
:
TRACE
(
"Unsupported symbol id %x
\n
"
,
sym
->
generic
.
id
);
break
;
...
...
include/wine/mscvpdb.h
View file @
cff33ced
...
...
@@ -1617,6 +1617,8 @@ union codeview_symbol
#define S_MSTOOL_V3 0x1116
/* compiler command line options and build information */
#define S_PUB_FUNC1_V3 0x1125
/* didn't get the difference between the two */
#define S_PUB_FUNC2_V3 0x1127
#define S_SECTINFO_V3 0x1136
#define S_SUBSECTINFO_V3 0x1137
#define S_SECUCOOKIE_V3 0x113A
/* ======================================== *
...
...
tools/winedump/msc.c
View file @
cff33ced
...
...
@@ -1252,6 +1252,25 @@ int codeview_dump_symbols(const void* root, unsigned long size)
sym
->
ssearch_v1
.
segment
,
sym
->
ssearch_v1
.
offset
);
break
;
case
S_SECTINFO_V3
:
printf
(
"
\t
SSection Info: seg=%04x ?=%04x rva=%08x size=%08x attr=%08x %s
\n
"
,
*
(
unsigned
short
*
)((
const
char
*
)
sym
+
4
),
*
(
unsigned
short
*
)((
const
char
*
)
sym
+
6
),
*
(
unsigned
*
)((
const
char
*
)
sym
+
8
),
*
(
unsigned
*
)((
const
char
*
)
sym
+
12
),
*
(
unsigned
*
)((
const
char
*
)
sym
+
16
),
(
const
char
*
)
sym
+
20
);
break
;
case
S_SUBSECTINFO_V3
:
printf
(
"
\t
SSubSection Info: addr=%04x:%08x size=%08x attr=%08x %s
\n
"
,
*
(
unsigned
short
*
)((
const
char
*
)
sym
+
16
),
*
(
unsigned
*
)((
const
char
*
)
sym
+
12
),
*
(
unsigned
*
)((
const
char
*
)
sym
+
4
),
*
(
unsigned
*
)((
const
char
*
)
sym
+
8
),
(
const
char
*
)
sym
+
18
);
break
;
default:
printf
(
">>> 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