Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
83462bf0
Commit
83462bf0
authored
Jun 23, 2012
by
Eric Pouech
Committed by
Alexandre Julliard
Jun 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Added support for index leaves in types definition for CodeView debug format.
parent
5393d886
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
msc.c
dlls/dbghelp/msc.c
+12
-0
mscvpdb.h
include/wine/mscvpdb.h
+12
-0
No files found.
dlls/dbghelp/msc.c
View file @
83462bf0
...
...
@@ -935,6 +935,18 @@ static int codeview_add_type_struct_field_list(struct codeview_type_parse* ctp,
}
break
;
case
LF_INDEX_V1
:
if
(
!
codeview_add_type_struct_field_list
(
ctp
,
symt
,
type
->
index_v1
.
ref
))
return
FALSE
;
ptr
+=
2
+
2
;
break
;
case
LF_INDEX_V2
:
if
(
!
codeview_add_type_struct_field_list
(
ctp
,
symt
,
type
->
index_v2
.
ref
))
return
FALSE
;
ptr
+=
2
+
2
+
4
;
break
;
default:
FIXME
(
"Unsupported type %04x in STRUCT field list
\n
"
,
type
->
generic
.
id
);
return
FALSE
;
...
...
include/wine/mscvpdb.h
View file @
83462bf0
...
...
@@ -723,6 +723,18 @@ union codeview_fieldtype
struct
p_string
p_name
;
}
membermodify_v2
;
struct
{
short
int
id
;
short
int
ref
;
}
index_v1
;
struct
{
short
int
id
;
short
int
unk
;
unsigned
int
ref
;
}
index_v2
;
};
...
...
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