shell32: Implement IShellImageData::GetSize().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2017-02-07 19:27:32 +03:00 committed by Alexandre Julliard
parent d9d99834f6
commit 5222eca2d5

View file

@ -1046,10 +1046,22 @@ static HRESULT WINAPI ShellImageDate_SelectPage(IShellImageData *iface, ULONG pa
static HRESULT WINAPI ShellImageData_GetSize(IShellImageData *iface, SIZE *size)
{
ShellImageData *This = impl_from_IShellImageData(iface);
REAL cx, cy;
HRESULT hr;
FIXME("%p, %p: stub\n", This, size);
TRACE("%p, %p\n", This, size);
return E_NOTIMPL;
if (!This->image)
return E_FAIL;
hr = gpstatus_to_hresult(GdipGetImageDimension(This->image, &cx, &cy));
if (SUCCEEDED(hr))
{
size->cx = cx;
size->cy = cy;
}
return hr;
}
static HRESULT WINAPI ShellImageData_GetRawDataFormat(IShellImageData *iface, GUID *format)