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
028956d1
Commit
028956d1
authored
Sep 29, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp,winedump: Added support for symbol 0x113c.
parent
82d1845d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
msc.c
dlls/dbghelp/msc.c
+1
-0
mscvpdb.h
include/wine/mscvpdb.h
+1
-0
msc.c
tools/winedump/msc.c
+12
-0
No files found.
dlls/dbghelp/msc.c
View file @
028956d1
...
...
@@ -1714,6 +1714,7 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root
break
;
case
S_MSTOOL_V3
:
/* just to silence a few warnings */
case
S_MSTOOLINFO_V3
:
case
S_MSTOOLENV_V3
:
break
;
...
...
include/wine/mscvpdb.h
View file @
028956d1
...
...
@@ -1620,6 +1620,7 @@ union codeview_symbol
#define S_SECTINFO_V3 0x1136
#define S_SUBSECTINFO_V3 0x1137
#define S_SECUCOOKIE_V3 0x113A
#define S_MSTOOLINFO_V3 0x113C
#define S_MSTOOLENV_V3 0x113D
/* ======================================== *
...
...
tools/winedump/msc.c
View file @
028956d1
...
...
@@ -1243,6 +1243,18 @@ int codeview_dump_symbols(const void* root, unsigned long size)
}
break
;
case
S_MSTOOLINFO_V3
:
{
const
unsigned
short
*
ptr
=
((
const
unsigned
short
*
)
sym
)
+
2
;
printf
(
"
\t
Tool info V3: unk=%04x%04x%04x front=%d.%d.%d.%d back=%d.%d.%d.%d %s
\n
"
,
ptr
[
0
],
ptr
[
1
],
ptr
[
2
],
ptr
[
3
],
ptr
[
4
],
ptr
[
5
],
ptr
[
6
],
ptr
[
7
],
ptr
[
8
],
ptr
[
9
],
ptr
[
10
],
(
const
char
*
)(
ptr
+
11
));
}
break
;
case
S_MSTOOLENV_V3
:
{
const
char
*
x1
=
(
const
char
*
)
sym
+
4
+
1
;
...
...
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