kernel32: Add a stub for ApplicationRecoveryInProgress.

This commit is contained in:
Austin English 2011-05-21 18:35:01 -05:00 committed by Alexandre Julliard
parent d7c9723bc1
commit ac2c5039c9
2 changed files with 11 additions and 0 deletions

View File

@ -147,6 +147,7 @@
@ stdcall -i386 -private AllocSLCallback(ptr ptr) krnl386.exe16.AllocSLCallback
@ stub AllocateUserPhysicalPages
@ stdcall ApplicationRecoveryFinished(long)
@ stdcall ApplicationRecoveryInProgress(ptr)
@ stdcall AreFileApisANSI()
@ stdcall AssignProcessToJobObject(ptr ptr)
@ stdcall AttachConsole(long)

View File

@ -3730,3 +3730,13 @@ VOID WINAPI ApplicationRecoveryFinished(BOOL success)
FIXME(": stub\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
}
/**********************************************************************
* ApplicationRecoveryInProgress (KERNEL32.@)
*/
HRESULT WINAPI ApplicationRecoveryInProgress(PBOOL canceled)
{
FIXME(":%p stub\n", canceled);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return E_FAIL;
}