2005-08-11 08:46:57 +00:00
|
|
|
/* $Id$
|
|
|
|
*
|
|
|
|
* server.c - VMS Enviroment Subsystem Server - Initialization
|
|
|
|
*
|
|
|
|
* ReactOS Operating System
|
|
|
|
*
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* This software is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this software; see the file COPYING.LIB. If not, write
|
|
|
|
* to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
|
|
|
|
* MA 02139, USA.
|
|
|
|
*
|
|
|
|
* --------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
#include "vmssrv.h"
|
|
|
|
|
|
|
|
//#define NDEBUG
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
HANDLE VmsApiPort = NULL;
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* NAME PRIVATE
|
2005-08-11 11:52:40 +00:00
|
|
|
* VmsStaticServerThread/1
|
2005-08-11 08:46:57 +00:00
|
|
|
*/
|
2005-08-11 11:52:40 +00:00
|
|
|
VOID STDCALL VmsStaticServerThread (PVOID x)
|
2005-08-11 08:46:57 +00:00
|
|
|
{
|
|
|
|
NTSTATUS Status = STATUS_SUCCESS;
|
2005-08-11 20:43:24 +00:00
|
|
|
PPORT_MESSAGE Request = (PPORT_MESSAGE) x;
|
2005-08-11 08:46:57 +00:00
|
|
|
PPORT_MESSAGE Reply = NULL;
|
|
|
|
ULONG MessageType = 0;
|
|
|
|
|
2005-08-11 20:43:24 +00:00
|
|
|
DPRINT("VMSSRV: %s called\n", __FUNCTION__);
|
|
|
|
|
|
|
|
MessageType = Request->u2.s2.Type;
|
|
|
|
DPRINT("VMSSRV: %s received a message (Type=%d)\n",
|
|
|
|
__FUNCTION__, MessageType);
|
|
|
|
switch (MessageType)
|
2005-08-11 08:46:57 +00:00
|
|
|
{
|
2005-08-11 20:43:24 +00:00
|
|
|
default:
|
|
|
|
Reply = Request;
|
|
|
|
Status = NtReplyPort (VmsApiPort, Reply);
|
|
|
|
break;
|
2005-08-11 08:46:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*=====================================================================
|
|
|
|
* PUBLIC API
|
|
|
|
*===================================================================*/
|
|
|
|
|
|
|
|
NTSTATUS STDCALL ServerDllInitialization (ULONG ArgumentCount,
|
|
|
|
LPWSTR *Argument)
|
|
|
|
{
|
2005-08-11 20:43:24 +00:00
|
|
|
NTSTATUS Status = STATUS_SUCCESS;
|
|
|
|
|
|
|
|
DPRINT("VMSSRV: %s called\n", __FUNCTION__);
|
|
|
|
|
|
|
|
// Get the listening port from csrsrv.dll
|
|
|
|
VmsApiPort = CsrQueryApiPort ();
|
|
|
|
if (NULL == VmsApiPort)
|
|
|
|
{
|
|
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
}
|
|
|
|
// Register our message dispatcher
|
|
|
|
Status = CsrAddStaticServerThread (VmsStaticServerThread);
|
|
|
|
if (NT_SUCCESS(Status))
|
|
|
|
{
|
|
|
|
//TODO: perform the real VMS server internal initialization here
|
|
|
|
}
|
|
|
|
return Status;
|
2005-08-11 08:46:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* EOF */
|