Commit 626162f7 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

kernel32: Return S_OK in RegisterApplicationRecoveryCallback stub.

parent a2aa1b01
......@@ -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;
}
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment