mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
VMS: use csrsrv!CsrAddStaticServerThread to hook the listening port.
svn path=/trunk/; revision=17284
This commit is contained in:
parent
d008d6c377
commit
26fc2d0d62
1 changed files with 3 additions and 4 deletions
|
@ -32,9 +32,9 @@ HANDLE VmsApiPort = NULL;
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* NAME PRIVATE
|
* NAME PRIVATE
|
||||||
* VmspCreatePort/1
|
* VmsStaticServerThread/1
|
||||||
*/
|
*/
|
||||||
NTSTATUS VmsStaticServerThread (PVOID x)
|
VOID STDCALL VmsStaticServerThread (PVOID x)
|
||||||
{
|
{
|
||||||
NTSTATUS Status = STATUS_SUCCESS;
|
NTSTATUS Status = STATUS_SUCCESS;
|
||||||
LPC_MAX_MESSAGE Request;
|
LPC_MAX_MESSAGE Request;
|
||||||
|
@ -62,7 +62,6 @@ NTSTATUS VmsStaticServerThread (PVOID x)
|
||||||
__FUNCTION__, Status);
|
__FUNCTION__, Status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Status;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*=====================================================================
|
/*=====================================================================
|
||||||
|
@ -72,7 +71,7 @@ NTSTATUS VmsStaticServerThread (PVOID x)
|
||||||
NTSTATUS STDCALL ServerDllInitialization (ULONG ArgumentCount,
|
NTSTATUS STDCALL ServerDllInitialization (ULONG ArgumentCount,
|
||||||
LPWSTR *Argument)
|
LPWSTR *Argument)
|
||||||
{
|
{
|
||||||
return CsrAddStaticServerThread ();
|
return CsrAddStaticServerThread (VmsStaticServerThread);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Reference in a new issue