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>
This commit is contained in:
parent
a2aa1b01f0
commit
626162f7db
|
@ -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;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in New Issue