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
5ca38675
Commit
5ca38675
authored
May 30, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
May 31, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Set current_structure when writing out structure members to
ensure the conformance/variance calculation function can find the necessary fields in the structures.
parent
36fd85f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
typegen.c
tools/widl/typegen.c
+4
-0
No files found.
tools/widl/typegen.c
View file @
5ca38675
...
...
@@ -1279,7 +1279,9 @@ static size_t write_struct_tfs(FILE *file, type_t *type,
}
/* member layout */
current_structure
=
type
;
write_struct_members
(
file
,
type
,
typestring_offset
);
current_structure
=
NULL
;
return
start_offset
;
case
RPC_FC_CSTRUCT
:
case
RPC_FC_CPSTRUCT
:
...
...
@@ -1403,7 +1405,9 @@ static size_t write_struct_tfs(FILE *file, type_t *type,
print_file
(
file
,
2
,
"NdrFcShort(0x0),
\t
/* FIXME: pointer stuff */
\n
"
);
*
typestring_offset
+=
8
;
current_structure
=
type
;
write_struct_members
(
file
,
type
,
typestring_offset
);
current_structure
=
NULL
;
return
start_offset
;
...
...
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