dwrite: Silence GetPropertyValues() fixme.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2021-03-04 18:39:36 +03:00 committed by Alexandre Julliard
parent a6bdbc7146
commit c8ac1909bc
1 changed files with 7 additions and 1 deletions

View File

@ -7212,7 +7212,13 @@ static HRESULT WINAPI dwritefontset_GetPropertyValues_(IDWriteFontSet3 *iface, D
static HRESULT WINAPI dwritefontset_GetPropertyValues(IDWriteFontSet3 *iface, UINT32 index, DWRITE_FONT_PROPERTY_ID id,
BOOL *exists, IDWriteLocalizedStrings **values)
{
FIXME("%p, %u, %d, %p, %p.\n", iface, index, id, exists, values);
static int once;
if (!once++)
FIXME("%p: stub\n", iface);
if (!once++)
FIXME("%p, %u, %d, %p, %p.\n", iface, index, id, exists, values);
return E_NOTIMPL;
}