Commit f0555c5e authored by Austin English's avatar Austin English Committed by Alexandre Julliard

rstrtmgr: Add RmShutdown stub.

parent 356a5261
......@@ -100,3 +100,12 @@ DWORD WINAPI RmEndSession(DWORD handle)
FIXME("%u stub!\n", handle);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/***********************************************************************
* RmShutdown (rstrtmgr.@)
*/
DWORD WINAPI RmShutdown(DWORD handle, ULONG flags, RM_WRITE_STATUS_CALLBACK status)
{
FIXME("%u, 0x%08x, %p stub!\n", handle, flags, status);
return ERROR_CALL_NOT_IMPLEMENTED;
}
......@@ -8,5 +8,5 @@
@ stub RmRemoveFilter
@ stub RmReserveHeap
@ stdcall RmRestart(long long ptr)
@ stub RmShutdown
@ stdcall RmShutdown(long long ptr)
@ stdcall RmStartSession(ptr long ptr)
......@@ -64,6 +64,8 @@ typedef struct {
BOOL bRestartable;
} RM_PROCESS_INFO, *PRM_PROCESS_INFO;
typedef void (CDECL *RM_WRITE_STATUS_CALLBACK)(UINT);
#ifdef __cplusplus
}
#endif
......
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