Commit e03f478a authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

inetcomm: Implement IMimeMessage_GetMessageSource.

parent b21b9c73
......@@ -1674,8 +1674,12 @@ static HRESULT WINAPI MimeMessage_GetMessageSource(
IStream **ppStream,
DWORD dwFlags)
{
MimeMessage *This = (MimeMessage *)iface;
FIXME("(%p)->(%p, 0x%x)\n", iface, ppStream, dwFlags);
return E_NOTIMPL;
IStream_AddRef(This->stream);
*ppStream = This->stream;
return S_OK;
}
static HRESULT WINAPI MimeMessage_GetMessageSize(
......
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