mirror of
https://github.com/reactos/wine.git
synced 2024-11-27 21:50:37 +00:00
kernel32: Add RegisterApplicationRestart stub.
This commit is contained in:
parent
701ef1d882
commit
9d36b416a7
@ -878,6 +878,7 @@
|
||||
@ stdcall ReadFileEx(long ptr long ptr ptr)
|
||||
@ stub ReadFileScatter
|
||||
@ stdcall ReadProcessMemory(long ptr ptr long ptr)
|
||||
@ stdcall RegisterApplicationRestart(wstr long)
|
||||
@ stub RegisterConsoleIME
|
||||
@ stub RegisterConsoleOS2
|
||||
@ stub RegisterConsoleVDM
|
||||
|
@ -2968,3 +2968,14 @@ BOOL WINAPI CmdBatNotification( BOOL bBatchRunning )
|
||||
FIXME("%d\n", bBatchRunning);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* RegisterApplicationRestart (KERNEL32.@)
|
||||
*/
|
||||
HRESULT WINAPI RegisterApplicationRestart(PCWSTR pwzCommandLine, DWORD dwFlags)
|
||||
{
|
||||
FIXME("(%s,%d)\n", debugstr_w(pwzCommandLine), dwFlags);
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user