From: Zhiyi Zhang <zzhang(a)codeweavers.com> --- dlls/windows.ui.core.textinput/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/windows.ui.core.textinput/main.c b/dlls/windows.ui.core.textinput/main.c index 69336b0466d..6ca81dc0e3c 100644 --- a/dlls/windows.ui.core.textinput/main.c +++ b/dlls/windows.ui.core.textinput/main.c @@ -117,7 +117,8 @@ static HRESULT WINAPI core_input_view_add_OcclusionsChanged(ICoreInputView *ifac EventRegistrationToken *token) { FIXME("iface %p, handler %p, token %p stub!\n", iface, handler, token); - return E_NOTIMPL; + token->value = 0xdeadbeef; + return S_OK; } static HRESULT WINAPI core_input_view_remove_OcclusionsChanged(ICoreInputView *iface, -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9269