48ee885985cf83714d0ed68e5f8faad1bf9b2e40
3 * server.c - VMS Enviroment Subsystem Server - Initialization
5 * ReactOS Operating System
7 * --------------------------------------------------------------------
9 * This software is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
14 * This software is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this software; see the file COPYING.LIB. If not, write
21 * to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
24 * --------------------------------------------------------------------
31 HANDLE VmsApiPort
= NULL
;
33 /**********************************************************************
35 * VmsStaticServerThread/1
37 VOID STDCALL
VmsStaticServerThread (PVOID x
)
39 NTSTATUS Status
= STATUS_SUCCESS
;
40 LPC_MAX_MESSAGE Request
;
41 PPORT_MESSAGE Reply
= NULL
;
42 ULONG MessageType
= 0;
46 Status
= NtReplyWaitReceivePort (VmsApiPort
,
49 (PPORT_MESSAGE
) & Request
);
50 if(NT_SUCCESS(Status
))
52 MessageType
= Request
.Header
.u2
.s2
.Type
;
53 DPRINT("VMS: %s received a message (Type=%d)\n",
54 __FUNCTION__
, MessageType
);
61 DPRINT("VMS: %s: NtReplyWaitReceivePort failed (Status=%08lx)\n",
62 __FUNCTION__
, Status
);
67 /*=====================================================================
69 *===================================================================*/
71 NTSTATUS STDCALL
ServerDllInitialization (ULONG ArgumentCount
,
74 return CsrAddStaticServerThread (VmsStaticServerThread
);