kernel32: Return S_OK in RegisterApplicationRecoveryCallback stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=43817
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Louis Lenders 2019-12-09 17:32:54 +01:00 committed by Alexandre Julliard
parent a2aa1b01f0
commit 626162f7db
1 changed files with 2 additions and 3 deletions

View File

@ -884,9 +884,8 @@ HRESULT WINAPI ApplicationRecoveryInProgress(PBOOL canceled)
*/
HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK callback, PVOID param, DWORD pingint, DWORD flags)
{
FIXME("%p, %p, %d, %d: stub\n", callback, param, pingint, flags);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return E_FAIL;
FIXME("%p, %p, %d, %d: stub, faking success\n", callback, param, pingint, flags);
return S_OK;
}
/***********************************************************************