rstrtmgr: Add stub for RmStartSession.

This commit is contained in:
Louis Lenders 2010-08-27 23:56:52 +02:00 committed by Alexandre Julliard
parent afa53a37a4
commit 981578b676
2 changed files with 12 additions and 1 deletions

View File

@ -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;
}

View File

@ -9,4 +9,4 @@
@ stub RmReserveHeap
@ stub RmRestart
@ stub RmShutdown
@ stub RmStartSession
@ stdcall RmStartSession(ptr long ptr)