16 May
2024
16 May
'24
9:59 p.m.
From: Etaash Mathamsetty <etaash.mathamsetty(a)gmail.com> --- dlls/shell32/shlfileop.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 4ed9c64a3ce..f4b3ae1c25b 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -2032,7 +2032,9 @@ static HRESULT WINAPI file_operation_GetAnyOperationsAborted(IFileOperation *ifa { FIXME("(%p, %p): stub.\n", iface, aborted); - return E_NOTIMPL; + *aborted = FALSE; + + return S_OK; } static const IFileOperationVtbl file_operation_vtbl = -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5671