Commit c2d8323f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

opcservices: Implement GetCompressionOptions().

parent 80579d63
......@@ -221,9 +221,12 @@ static HRESULT WINAPI opc_part_GetContentType(IOpcPart *iface, LPWSTR *type)
static HRESULT WINAPI opc_part_GetCompressionOptions(IOpcPart *iface, OPC_COMPRESSION_OPTIONS *options)
{
FIXME("iface %p, options %p stub!\n", iface, options);
struct opc_part *part = impl_from_IOpcPart(iface);
return E_NOTIMPL;
TRACE("iface %p, options %p.\n", iface, options);
*options = part->compression_options;
return S_OK;
}
static const IOpcPartVtbl opc_part_vtbl =
......
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