Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
bb52ed35
Commit
bb52ed35
authored
Jun 29, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Jun 29, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp/msc: Support LF_INDEX* in enumeration type definition.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
parent
f8d3c2b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
msc.c
dlls/dbghelp/msc.c
+12
-0
No files found.
dlls/dbghelp/msc.c
View file @
bb52ed35
...
...
@@ -907,6 +907,18 @@ static BOOL codeview_add_type_enum_field_list(struct codeview_type_parse* ctp,
break
;
}
case
LF_INDEX_V1
:
if
(
!
codeview_add_type_enum_field_list
(
ctp
,
symt
,
type
->
index_v1
.
ref
))
return
FALSE
;
ptr
+=
2
+
2
;
break
;
case
LF_INDEX_V2
:
if
(
!
codeview_add_type_enum_field_list
(
ctp
,
symt
,
type
->
index_v2
.
ref
))
return
FALSE
;
ptr
+=
2
+
2
+
4
;
break
;
default:
FIXME
(
"Unsupported type %04x in ENUM field list
\n
"
,
type
->
generic
.
id
);
return
FALSE
;
...
...
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