Commit 9d36b416 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

kernel32: Add RegisterApplicationRestart stub.

parent 701ef1d8
...@@ -878,6 +878,7 @@ ...@@ -878,6 +878,7 @@
@ stdcall ReadFileEx(long ptr long ptr ptr) @ stdcall ReadFileEx(long ptr long ptr ptr)
@ stub ReadFileScatter @ stub ReadFileScatter
@ stdcall ReadProcessMemory(long ptr ptr long ptr) @ stdcall ReadProcessMemory(long ptr ptr long ptr)
@ stdcall RegisterApplicationRestart(wstr long)
@ stub RegisterConsoleIME @ stub RegisterConsoleIME
@ stub RegisterConsoleOS2 @ stub RegisterConsoleOS2
@ stub RegisterConsoleVDM @ stub RegisterConsoleVDM
......
...@@ -2968,3 +2968,14 @@ BOOL WINAPI CmdBatNotification( BOOL bBatchRunning ) ...@@ -2968,3 +2968,14 @@ BOOL WINAPI CmdBatNotification( BOOL bBatchRunning )
FIXME("%d\n", bBatchRunning); FIXME("%d\n", bBatchRunning);
return FALSE; return FALSE;
} }
/***********************************************************************
* RegisterApplicationRestart (KERNEL32.@)
*/
HRESULT WINAPI RegisterApplicationRestart(PCWSTR pwzCommandLine, DWORD dwFlags)
{
FIXME("(%s,%d)\n", debugstr_w(pwzCommandLine), dwFlags);
return S_OK;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment