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
22f01fcc
Commit
22f01fcc
authored
Feb 06, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Added support for register v3 in msc.
parent
ac3b817d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
msc.c
dlls/dbghelp/msc.c
+9
-0
No files found.
dlls/dbghelp/msc.c
View file @
22f01fcc
...
...
@@ -1495,6 +1495,15 @@ static int codeview_snarf(const struct msc_debug_info* msc_dbg, const BYTE* root
block
,
codeview_get_type
(
sym
->
register_v2
.
type
,
FALSE
),
terminate_string
(
&
sym
->
register_v2
.
p_name
));
break
;
case
S_REGISTER_V3
:
loc
.
kind
=
loc_register
;
loc
.
reg
=
sym
->
register_v3
.
reg
;
loc
.
offset
=
0
;
symt_add_func_local
(
msc_dbg
->
module
,
curr_func
,
DataIsLocal
,
&
loc
,
block
,
codeview_get_type
(
sym
->
register_v3
.
type
,
FALSE
),
sym
->
register_v3
.
name
);
break
;
case
S_BLOCK_V1
:
block
=
symt_open_func_block
(
msc_dbg
->
module
,
curr_func
,
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