March 5, 2026
5:31 p.m.
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> --- dlls/wintypes/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/wintypes/main.c b/dlls/wintypes/main.c index 287e5992225..5d3c37df2e1 100644 --- a/dlls/wintypes/main.c +++ b/dlls/wintypes/main.c @@ -162,7 +162,9 @@ static HRESULT STDMETHODCALLTYPE api_information_statics_IsMethodPresent( if (!type_name) return E_INVALIDARG; - return E_NOTIMPL; + /* Add interface IDataTransferManagerStatics2, then this can return TRUE */ + *value = FALSE; + return S_OK; } static HRESULT STDMETHODCALLTYPE api_information_statics_IsMethodPresentWithArity( -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10252