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
60b8750d
Commit
60b8750d
authored
Sep 28, 2009
by
Peter Oberndorfer
Committed by
Alexandre Julliard
Sep 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Implement IStream::Stat for registry/memory streams.
parent
2d417625
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
regstream.c
dlls/shlwapi/regstream.c
+17
-2
No files found.
dlls/shlwapi/regstream.c
View file @
60b8750d
...
@@ -239,9 +239,24 @@ static HRESULT WINAPI IStream_fnStat (IStream * iface, STATSTG* pstatstg, DWOR
...
@@ -239,9 +239,24 @@ static HRESULT WINAPI IStream_fnStat (IStream * iface, STATSTG* pstatstg, DWOR
{
{
ISHRegStream
*
This
=
(
ISHRegStream
*
)
iface
;
ISHRegStream
*
This
=
(
ISHRegStream
*
)
iface
;
TRACE
(
"(%p)
\n
"
,
This
);
TRACE
(
"(%p, %p, %d)
\n
"
,
This
,
pstatstg
,
grfStatFlag
);
pstatstg
->
pwcsName
=
NULL
;
pstatstg
->
type
=
STGTY_STREAM
;
pstatstg
->
cbSize
.
QuadPart
=
This
->
dwLength
;
pstatstg
->
mtime
.
dwHighDateTime
=
0
;
pstatstg
->
mtime
.
dwLowDateTime
=
0
;
pstatstg
->
ctime
.
dwHighDateTime
=
0
;
pstatstg
->
ctime
.
dwLowDateTime
=
0
;
pstatstg
->
atime
.
dwHighDateTime
=
0
;
pstatstg
->
atime
.
dwLowDateTime
=
0
;
pstatstg
->
grfMode
=
STGM_READWRITE
;
pstatstg
->
grfLocksSupported
=
0
;
pstatstg
->
clsid
=
CLSID_NULL
;
pstatstg
->
grfStateBits
=
0
;
pstatstg
->
reserved
=
0
;
return
E_NOTIMPL
;
return
S_OK
;
}
}
/*************************************************************************
/*************************************************************************
...
...
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