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
53dd90ae
Commit
53dd90ae
authored
Jul 18, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Give names to 1Ole stream header fields.
parent
e45202fd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
storage32.c
dlls/ole32/storage32.c
+6
-2
No files found.
dlls/ole32/storage32.c
View file @
53dd90ae
...
...
@@ -8552,13 +8552,17 @@ HRESULT STORAGE_CreateOleStream(IStorage *storage, DWORD flags)
struct
empty_1ole_stream
{
DWORD
version_magic
;
DWORD
flags
;
BYTE
padding
[
12
];
DWORD
update_options
;
DWORD
reserved
;
DWORD
mon_stream_size
;
};
struct
empty_1ole_stream
stream_data
;
stream_data
.
version_magic
=
version_magic
;
stream_data
.
flags
=
flags
;
memset
(
stream_data
.
padding
,
0
,
sizeof
(
stream_data
.
padding
));
stream_data
.
update_options
=
0
;
stream_data
.
reserved
=
0
;
stream_data
.
mon_stream_size
=
0
;
hr
=
IStream_Write
(
stream
,
&
stream_data
,
sizeof
(
stream_data
),
NULL
);
IStream_Release
(
stream
);
...
...
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