On Wed, Aug 19, 2020 at 6:33 PM Brendan Shanks bshanks@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