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
a35fd4f4
Commit
a35fd4f4
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: Remove pointer check in IStream::Clone, it also crashes on Windows.
Add comments to functions that are not implemented.
parent
58669ece
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
regstream.c
dlls/shlwapi/regstream.c
+8
-2
No files found.
dlls/shlwapi/regstream.c
View file @
a35fd4f4
...
...
@@ -234,6 +234,8 @@ static HRESULT WINAPI IStream_fnCopyTo (IStream * iface, IStream* pstm, ULARGE_I
pcbRead
->
QuadPart
=
0
;
if
(
pcbWritten
)
pcbWritten
->
QuadPart
=
0
;
/* TODO implement */
return
E_NOTIMPL
;
}
...
...
@@ -246,6 +248,7 @@ static HRESULT WINAPI IStream_fnCommit (IStream * iface, DWORD grfCommitFlags)
TRACE
(
"(%p)
\n
"
,
This
);
/* commit not supported by this stream */
return
E_NOTIMPL
;
}
...
...
@@ -258,6 +261,7 @@ static HRESULT WINAPI IStream_fnRevert (IStream * iface)
TRACE
(
"(%p)
\n
"
,
This
);
/* revert not supported by this stream */
return
E_NOTIMPL
;
}
...
...
@@ -270,6 +274,7 @@ static HRESULT WINAPI IStream_fnLockUnlockRegion (IStream * iface, ULARGE_INTEGE
TRACE
(
"(%p)
\n
"
,
This
);
/* lock/unlock not supported by this stream */
return
E_NOTIMPL
;
}
...
...
@@ -308,8 +313,9 @@ static HRESULT WINAPI IStream_fnClone (IStream * iface, IStream** ppstm)
ISHRegStream
*
This
=
(
ISHRegStream
*
)
iface
;
TRACE
(
"(%p)
\n
"
,
This
);
if
(
ppstm
)
*
ppstm
=
NULL
;
*
ppstm
=
NULL
;
/* clone not supported by this stream */
return
E_NOTIMPL
;
}
...
...
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