inetcomm: Add a stub for MimeOleCreateVirtualStream.

This commit is contained in:
Huw Davies 2007-11-02 11:52:27 +00:00 committed by Alexandre Julliard
parent 70705829dd
commit 78c90082a5
2 changed files with 14 additions and 1 deletions

View file

@ -55,7 +55,7 @@
@ stub MimeOleCreateMessageParts
@ stub MimeOleCreatePropertySet
@ stub MimeOleCreateSecurity
@ stub MimeOleCreateVirtualStream
@ stdcall MimeOleCreateVirtualStream(ptr)
@ stub MimeOleDecodeHeader
@ stub MimeOleEncodeHeader
@ stub MimeOleFileTimeToInetDate

View file

@ -27,6 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "objbase.h"
#include "ole2.h"
#include "mimeole.h"
#include "wine/debug.h"
@ -54,3 +55,15 @@ HRESULT WINAPI MimeOleCreateMessage(IUnknown *pUnkOuter, IMimeMessage **ppMessag
*ppMessage = NULL;
return E_NOTIMPL;
}
/***********************************************************************
* MimeOleCreateVirtualStream (INETCOMM.@)
*/
HRESULT WINAPI MimeOleCreateVirtualStream(IStream **ppStream)
{
HRESULT hr;
FIXME("(%p)\n", ppStream);
hr = CreateStreamOnHGlobal(NULL, TRUE, ppStream);
return hr;
}