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
ee4aaf7f
Commit
ee4aaf7f
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 0x113a.
parent
7abf97ca
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
msc.c
dlls/dbghelp/msc.c
+2
-0
mscvpdb.h
include/wine/mscvpdb.h
+9
-0
msc.c
tools/winedump/msc.c
+5
-0
No files found.
dlls/dbghelp/msc.c
View file @
ee4aaf7f
...
...
@@ -1725,7 +1725,9 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root
TRACE
(
"S-Align V1
\n
"
);
break
;
/* the symbols we can safely ignore for now */
case
0x112c
:
case
S_SECUCOOKIE_V3
:
TRACE
(
"Unsupported symbol id %x
\n
"
,
sym
->
generic
.
id
);
break
;
...
...
include/wine/mscvpdb.h
View file @
ee4aaf7f
...
...
@@ -1522,6 +1522,14 @@ union codeview_symbol
unsigned
int
offset
;
unsigned
short
segment
;
}
ssearch_v1
;
struct
{
short
int
len
;
short
int
id
;
unsigned
int
offset
;
unsigned
int
unknown
;
}
security_cookie_v3
;
};
#define S_COMPILAND_V1 0x0001
...
...
@@ -1597,6 +1605,7 @@ 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_SECUCOOKIE_V3 0x113A
/* ======================================== *
* Line number information
...
...
tools/winedump/msc.c
View file @
ee4aaf7f
...
...
@@ -1033,6 +1033,11 @@ int codeview_dump_symbols(const void* root, unsigned long size)
nest_block
++
;
break
;
case
S_SECUCOOKIE_V3
:
printf
(
"
\t
Security Cookie V3 @%d unk:%x
\n
"
,
sym
->
security_cookie_v3
.
offset
,
sym
->
security_cookie_v3
.
unknown
);
break
;
case
S_END_V1
:
if
(
nest_block
)
{
...
...
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