kernel32: Add a stub for UnregisterApplicationRestart.
This commit is contained in:
parent
bb8fdb734e
commit
fd6c5490df
@ -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)
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user