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(
return E_NOTIMPL;
}
static HRESULT WINAPI DataCache_QueryGetData(
IDataObject* iface,
LPFORMATETC pformatetc)
static HRESULT WINAPI DataCache_QueryGetData( IDataObject *iface, FORMATETC *fmt )
{
FIXME("stub\n");
return E_NOTIMPL;
DataCache *This = impl_from_IDataObject( iface );
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