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

inetcomm: Partial implementation of IMimeBody_GetData.

parent 4ba3aa50
......@@ -914,8 +914,12 @@ static HRESULT WINAPI MimeBody_GetData(
ENCODINGTYPE ietEncoding,
IStream** ppStream)
{
FIXME("stub\n");
return E_NOTIMPL;
MimeBody *This = impl_from_IMimeBody(iface);
FIXME("(%p)->(%d, %p). Ignoring encoding type.\n", This, ietEncoding, ppStream);
*ppStream = This->data;
IStream_AddRef(*ppStream);
return S_OK;
}
static HRESULT WINAPI MimeBody_SetData(
......
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