[WINSRV/WIN32CSR]
[reactos.git] / win32ss / user / winsrv / server.c
1 /*
2 * server.c - ReactOS/Win32 Console+User Enviroment Subsystem Server - Initialization
3 *
4 * ReactOS Operating System
5 *
6 * --------------------------------------------------------------------
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 * --------------------------------------------------------------------
23 *
24 * PROGRAMMER: Eric Kohl
25 */
26
27 /* INCLUDES ******************************************************************/
28
29 #include "winsrv.h"
30
31 #define NDEBUG
32 #include <debug.h>
33
34
35 /* GLOBALS *******************************************************************/
36
37 static BOOLEAN ServicesProcessIdValid = FALSE;
38 static ULONG_PTR ServicesProcessId;
39
40
41 /* FUNCTIONS *****************************************************************/
42
43 CSR_API(SrvRegisterServicesProcess)
44 {
45 if (ServicesProcessIdValid == TRUE)
46 {
47 /* Only accept a single call */
48 return STATUS_INVALID_PARAMETER;
49 }
50 else
51 {
52 ServicesProcessId = (ULONG_PTR)ApiMessage->Data.RegisterServicesProcessRequest.ProcessId;
53 ServicesProcessIdValid = TRUE;
54 return STATUS_SUCCESS;
55 }
56 }
57
58 /* EOF */