kernel32: Add a stub for ApplicationRecoveryInProgress.
This commit is contained in:
parent
d7c9723bc1
commit
ac2c5039c9
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue