kernel32: Add a stub for UnregisterApplicationRestart.

This commit is contained in:
Austin English 2014-06-17 16:24:48 -07:00 committed by Alexandre Julliard
parent bb8fdb734e
commit fd6c5490df
3 changed files with 12 additions and 0 deletions

View File

@ -1237,6 +1237,7 @@
@ stdcall UnlockFile(long long long long long)
@ stdcall UnlockFileEx(long long long long ptr)
@ stdcall UnmapViewOfFile(ptr)
@ stdcall UnregisterApplicationRestart()
# @ stub UnregisterConsoleIME
@ stdcall UnregisterWait(long)
@ stdcall UnregisterWaitEx(long long)

View File

@ -3956,3 +3956,13 @@ VOID WINAPI FlushProcessWriteBuffers(void)
if (!once++)
FIXME(": stub\n");
}
/***********************************************************************
* UnregisterApplicationRestart (KERNEL32.@)
*/
HRESULT WINAPI UnregisterApplicationRestart(void)
{
FIXME(": stub\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return S_OK;
}

View File

@ -2411,6 +2411,7 @@ WINBASEAPI BOOL WINAPI UnlockFile(HANDLE,DWORD,DWORD,DWORD,DWORD);
WINBASEAPI BOOL WINAPI UnlockFileEx(HANDLE,DWORD,DWORD,DWORD,LPOVERLAPPED);
#define UnlockSegment(handle) GlobalUnfix((HANDLE)(handle))
WINBASEAPI BOOL WINAPI UnmapViewOfFile(LPCVOID);
WINBASEAPI HRESULT WINAPI UnregisterApplicationRestart(void);
WINBASEAPI BOOL WINAPI UnregisterWait(HANDLE);
WINBASEAPI BOOL WINAPI UnregisterWaitEx(HANDLE,HANDLE);
WINBASEAPI BOOL WINAPI UpdateResourceA(HANDLE,LPCSTR,LPCSTR,WORD,LPVOID,DWORD);