Commit 981578b6 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

rstrtmgr: Add stub for RmStartSession.

parent afa53a37
......@@ -46,3 +46,14 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
}
return TRUE;
}
/***********************************************************************
* RmStartSession (rstrtmgr.@)
*
* Start a new restart manager session
*/
DWORD WINAPI RmStartSession(DWORD *sessionhandle, DWORD flags, WCHAR sessionkey[])
{
FIXME("%p, %d, %p stub!\n", sessionhandle, flags, sessionkey);
return ERROR_CALL_NOT_IMPLEMENTED;
}
......@@ -9,4 +9,4 @@
@ stub RmReserveHeap
@ stub RmRestart
@ stub RmShutdown
@ stub RmStartSession
@ stdcall RmStartSession(ptr long ptr)
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