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
4f8b5a85
Commit
4f8b5a85
authored
Apr 24, 1999
by
Francis Beaudet
Committed by
Alexandre Julliard
Apr 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented CreateStreamOnHGLOBAL.
parent
5c385be5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
11 deletions
+2
-11
Makefile.in
ole/Makefile.in
+1
-0
hglobalstream.c
ole/hglobalstream.c
+0
-0
ole2stubs.c
ole/ole2stubs.c
+0
-9
stg_stream.c
ole/stg_stream.c
+1
-2
No files found.
ole/Makefile.in
View file @
4f8b5a85
...
...
@@ -12,6 +12,7 @@ C_SRCS = \
compositemoniker.c
\
filemoniker.c
\
guid.c
\
hglobalstream.c
\
ifs.c
\
itemmoniker.c
\
moniker.c
\
...
...
ole/hglobalstream.c
0 → 100644
View file @
4f8b5a85
This diff is collapsed.
Click to expand it.
ole/ole2stubs.c
View file @
4f8b5a85
...
...
@@ -274,15 +274,6 @@ HRESULT WINAPI OleRegEnumVerbs (REFCLSID clsid, LPENUMOLEVERB* ppenum)
}
/***********************************************************************
* CreateStreamOnHGlobal [OLE32.61]
*/
HRESULT
WINAPI
CreateStreamOnHGlobal
(
HGLOBAL
hGlobal
,
BOOL
fDeleteOnRelease
,
LPSTREAM
*
ppstm
)
{
FIXME
(
ole
,
"(%x,%x,%p), stub!
\n
"
,
hGlobal
,
fDeleteOnRelease
,
ppstm
);
return
S_OK
;
}
/***********************************************************************
* OleSave [OLE32.124]
*/
HRESULT
WINAPI
OleSave
(
...
...
ole/stg_stream.c
View file @
4f8b5a85
...
...
@@ -169,7 +169,7 @@ HRESULT WINAPI StgStreamImpl_QueryInterface(
{
*
ppvObject
=
(
IStream
*
)
This
;
}
else
if
(
memcmp
(
&
IID_ISt
orage
,
riid
,
sizeof
(
IID_IStream
))
==
0
)
else
if
(
memcmp
(
&
IID_ISt
ream
,
riid
,
sizeof
(
IID_IStream
))
==
0
)
{
*
ppvObject
=
(
IStream
*
)
This
;
}
...
...
@@ -644,7 +644,6 @@ HRESULT WINAPI StgStreamImpl_CopyTo(
ULARGE_INTEGER
*
pcbRead
,
/* [out] */
ULARGE_INTEGER
*
pcbWritten
)
/* [out] */
{
StgStreamImpl
*
const
This
=
(
StgStreamImpl
*
)
iface
;
HRESULT
hr
=
S_OK
;
BYTE
tmpBuffer
[
128
];
ULONG
bytesRead
,
bytesWritten
,
copySize
;
...
...
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