mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[SAMLIB]
Implement SamShutdownSamServer. svn path=/trunk/; revision=58068
This commit is contained in:
parent
45c809f451
commit
bef50fc841
1 changed files with 15 additions and 2 deletions
|
@ -1659,8 +1659,21 @@ NTSTATUS
|
|||
NTAPI
|
||||
SamShutdownSamServer(IN SAM_HANDLE ServerHandle)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
NTSTATUS Status;
|
||||
|
||||
TRACE("(%p)\n", ServerHandle);
|
||||
|
||||
RpcTryExcept
|
||||
{
|
||||
Status = SamrShutdownSamServer((SAMPR_HANDLE)ServerHandle);
|
||||
}
|
||||
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
|
||||
{
|
||||
Status = I_RpcMapWin32Status(RpcExceptionCode());
|
||||
}
|
||||
RpcEndExcept;
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue