mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
54 lines
1.1 KiB
C
54 lines
1.1 KiB
C
/* $Id$
|
|
*
|
|
* reactos/subsys/csrss/api/user.c
|
|
*
|
|
* User functions
|
|
*
|
|
* ReactOS Operating System
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <windows.h>
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/ntndk.h>
|
|
|
|
#include "api.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
static BOOLEAN ServicesProcessIdValid = FALSE;
|
|
static ULONG ServicesProcessId;
|
|
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
CSR_API(CsrRegisterServicesProcess)
|
|
{
|
|
NTSTATUS Status;
|
|
|
|
Request->Header.MessageSize = sizeof(CSR_API_MESSAGE);
|
|
Request->Header.DataSize = sizeof(CSR_API_MESSAGE) - LPC_MESSAGE_BASE_SIZE;
|
|
|
|
if (ServicesProcessIdValid == TRUE)
|
|
{
|
|
/* Only accept a single call */
|
|
Status = STATUS_INVALID_PARAMETER;
|
|
}
|
|
else
|
|
{
|
|
ServicesProcessId = (ULONG)Request->Data.RegisterServicesProcessRequest.ProcessId;
|
|
ServicesProcessIdValid = TRUE;
|
|
Status = STATUS_SUCCESS;
|
|
}
|
|
|
|
Request->Status = Status;
|
|
|
|
return(Status);
|
|
}
|
|
|
|
/* EOF */
|