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

ole32: Implement QueryGetData().

parent b4cd2c4d
...@@ -1026,12 +1026,15 @@ static HRESULT WINAPI DataCache_GetDataHere( ...@@ -1026,12 +1026,15 @@ static HRESULT WINAPI DataCache_GetDataHere(
return E_NOTIMPL; return E_NOTIMPL;
} }
static HRESULT WINAPI DataCache_QueryGetData( static HRESULT WINAPI DataCache_QueryGetData( IDataObject *iface, FORMATETC *fmt )
IDataObject* iface,
LPFORMATETC pformatetc)
{ {
FIXME("stub\n"); DataCache *This = impl_from_IDataObject( iface );
return E_NOTIMPL; DataCacheEntry *cache_entry;
TRACE( "(%p)->(%s)\n", iface, debugstr_formatetc( fmt ) );
cache_entry = DataCache_GetEntryForFormatEtc( This, fmt );
return cache_entry ? S_OK : S_FALSE;
} }
/************************************************************************ /************************************************************************
......
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