[PATCH] dwrite: Add IDWriteFontFace5::Equals() stub.

Alex Henrie alexhenrie24 at gmail.com
Wed Aug 19 19:48:22 CDT 2020


On Wed, Aug 19, 2020 at 6:33 PM Brendan Shanks <bshanks at codeweavers.com> wrote:
>
> Fixes crash in current CEF.

> +static BOOL WINAPI dwritefontface5_Equals(IDWriteFontFace5 *iface, IDWriteFontFace *other)
> +{
> +    FIXME("%p, %p.\n", iface, other);
> +
> +    return E_NOTIMPL;

Would `return iface == other` be good enough for CEF? That would make
a lot more sense to me, since this function returns BOOL, not HRESULT.

-Alex



More information about the wine-devel mailing list