mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
71 lines
1.6 KiB
C
71 lines
1.6 KiB
C
/* $Id: exit.c,v 1.4 2004/04/09 20:03:14 navaraf Exp $
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS user32.dll
|
|
* FILE: lib/user32/misc/exit.c
|
|
* PURPOSE: Shutdown related functions
|
|
* PROGRAMMER: Eric Kohl (ekohl@rz-online.de)
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <user32.h>
|
|
#define NTOS_MODE_USER
|
|
#include <ntos.h>
|
|
#include <ntdll/csr.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
BOOL STDCALL
|
|
ExitWindowsEx(UINT uFlags,
|
|
DWORD dwReserved)
|
|
{
|
|
CSRSS_API_REQUEST Request;
|
|
CSRSS_API_REPLY Reply;
|
|
NTSTATUS Status;
|
|
|
|
Request.Type = CSRSS_EXIT_REACTOS;
|
|
Request.Data.ExitReactosRequest.Flags = uFlags;
|
|
Request.Data.ExitReactosRequest.Reserved = dwReserved;
|
|
|
|
Status = CsrClientCallServer(&Request,
|
|
&Reply,
|
|
sizeof(CSRSS_API_REQUEST),
|
|
sizeof(CSRSS_API_REPLY));
|
|
if (!NT_SUCCESS(Status) || !NT_SUCCESS(Status = Reply.Status))
|
|
{
|
|
SetLastError(RtlNtStatusToDosError(Status));
|
|
return(FALSE);
|
|
}
|
|
|
|
return(TRUE);
|
|
}
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
BOOL STDCALL
|
|
RegisterServicesProcess(DWORD ServicesProcessId)
|
|
{
|
|
CSRSS_API_REQUEST Request;
|
|
CSRSS_API_REPLY Reply;
|
|
NTSTATUS Status;
|
|
|
|
Request.Type = CSRSS_REGISTER_SERVICES_PROCESS;
|
|
Request.Data.RegisterServicesProcessRequest.ProcessId = ServicesProcessId;
|
|
|
|
Status = CsrClientCallServer(&Request,
|
|
&Reply,
|
|
sizeof(CSRSS_API_REQUEST),
|
|
sizeof(CSRSS_API_REPLY));
|
|
if (!NT_SUCCESS(Status) || !NT_SUCCESS(Status = Reply.Status))
|
|
{
|
|
SetLastError(RtlNtStatusToDosError(Status));
|
|
return(FALSE);
|
|
}
|
|
|
|
return(TRUE);
|
|
}
|
|
|
|
/* EOF */
|