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
37cf4a52
Commit
37cf4a52
authored
Jul 27, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 28, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Reorder segments to match midl.
parent
c9a08007
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
write_msft.c
tools/widl/write_msft.c
+2
-2
No files found.
tools/widl/write_msft.c
View file @
37cf4a52
...
...
@@ -2451,9 +2451,9 @@ static int save_all_changes(msft_typelib_t *typelib)
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_TYPEINFO
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_GUIDHASH
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_GUID
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_REFERENCES
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_IMPORTINFO
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_IMPORTFILES
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_REFERENCES
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_NAMEHASH
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_NAME
);
filepos
+=
ctl2_finalize_segment
(
typelib
,
filepos
,
MSFT_SEG_STRING
);
...
...
@@ -2474,9 +2474,9 @@ static int save_all_changes(msft_typelib_t *typelib)
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_TYPEINFO
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_GUIDHASH
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_GUID
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_REFERENCES
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_IMPORTINFO
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_IMPORTFILES
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_REFERENCES
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_NAMEHASH
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_NAME
))
return
retval
;
if
(
!
ctl2_write_segment
(
typelib
,
fd
,
MSFT_SEG_STRING
))
return
retval
;
...
...
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