20 Aug
2020
20 Aug
'20
12:48 a.m.
On Wed, Aug 19, 2020 at 6:33 PM Brendan Shanks <bshanks(a)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