Commit 78c90082 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

inetcomm: Add a stub for MimeOleCreateVirtualStream.

parent 70705829
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
@ stub MimeOleCreateMessageParts @ stub MimeOleCreateMessageParts
@ stub MimeOleCreatePropertySet @ stub MimeOleCreatePropertySet
@ stub MimeOleCreateSecurity @ stub MimeOleCreateSecurity
@ stub MimeOleCreateVirtualStream @ stdcall MimeOleCreateVirtualStream(ptr)
@ stub MimeOleDecodeHeader @ stub MimeOleDecodeHeader
@ stub MimeOleEncodeHeader @ stub MimeOleEncodeHeader
@ stub MimeOleFileTimeToInetDate @ stub MimeOleFileTimeToInetDate
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include "winbase.h" #include "winbase.h"
#include "winuser.h" #include "winuser.h"
#include "objbase.h" #include "objbase.h"
#include "ole2.h"
#include "mimeole.h" #include "mimeole.h"
#include "wine/debug.h" #include "wine/debug.h"
...@@ -54,3 +55,15 @@ HRESULT WINAPI MimeOleCreateMessage(IUnknown *pUnkOuter, IMimeMessage **ppMessag ...@@ -54,3 +55,15 @@ HRESULT WINAPI MimeOleCreateMessage(IUnknown *pUnkOuter, IMimeMessage **ppMessag
*ppMessage = NULL; *ppMessage = NULL;
return E_NOTIMPL; return E_NOTIMPL;
} }
/***********************************************************************
* MimeOleCreateVirtualStream (INETCOMM.@)
*/
HRESULT WINAPI MimeOleCreateVirtualStream(IStream **ppStream)
{
HRESULT hr;
FIXME("(%p)\n", ppStream);
hr = CreateStreamOnHGlobal(NULL, TRUE, ppStream);
return hr;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment