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
bbf0251c
Commit
bbf0251c
authored
Mar 18, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: CV's ssearch.
- added definitions for start_search symbol info - silenced warnings from this symbol
parent
4143ce5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
msc.c
dlls/dbghelp/msc.c
+5
-0
mscvpdb.h
dlls/dbghelp/mscvpdb.h
+9
-1
No files found.
dlls/dbghelp/msc.c
View file @
bbf0251c
...
...
@@ -1520,6 +1520,11 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root
case
S_MSTOOL_V3
:
/* just to silence a few warnings */
break
;
case
S_SSEARCH_V1
:
TRACE
(
"Start search: seg=0x%x at offset 0x%08x
\n
"
,
sym
->
ssearch_v1
.
segment
,
sym
->
ssearch_v1
.
offset
);
break
;
default:
FIXME
(
"Unsupported symbol id %x
\n
"
,
sym
->
generic
.
id
);
dump
(
sym
,
2
+
sym
->
generic
.
len
);
...
...
dlls/dbghelp/mscvpdb.h
View file @
bbf0251c
...
...
@@ -1112,9 +1112,17 @@ union codeview_symbol
unsigned
int
unknown
;
char
name
[
1
];
}
compile_v3
;
struct
{
short
int
len
;
short
int
id
;
unsigned
int
offset
;
unsigned
short
segment
;
}
ssearch_v1
;
};
#define S_COMPILE_V1 0x0001
#define S_COMPILE_V1
0x0001
#define S_REGISTER_V1 0x0002
#define S_CONSTANT_V1 0x0003
#define S_UDT_V1 0x0004
...
...
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