mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fixed a typo
svn path=/trunk/; revision=807
This commit is contained in:
parent
d2c016b5ab
commit
2eccd28b8f
2 changed files with 5 additions and 5 deletions
|
@ -71,4 +71,4 @@ _MmSafeCopyToUser:
|
|||
|
||||
ret
|
||||
|
||||
_MemSafeCopyToUser:
|
||||
_MemSafeCopyToUserEnd:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: port.c,v 1.10 1999/11/25 10:47:58 dwelch Exp $
|
||||
/* $Id: port.c,v 1.11 1999/12/01 15:08:31 ekohl Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -28,6 +28,7 @@
|
|||
//#define NDEBUG
|
||||
#include <internal/debug.h>
|
||||
|
||||
|
||||
/* TYPES ********************************************************************/
|
||||
|
||||
#define EPORT_INACTIVE (0)
|
||||
|
@ -69,7 +70,7 @@ NTSTATUS NiInitPort(VOID)
|
|||
{
|
||||
ExPortType = ExAllocatePool(NonPagedPool,sizeof(OBJECT_TYPE));
|
||||
|
||||
RtlInitUnicodeString(&ExPortType->TypeName,L"Event");
|
||||
RtlInitUnicodeString(&ExPortType->TypeName,L"Port");
|
||||
|
||||
ExPortType->MaxObjects = ULONG_MAX;
|
||||
ExPortType->MaxHandles = ULONG_MAX;
|
||||
|
@ -173,7 +174,7 @@ NTSTATUS STDCALL NtAcceptConnectPort (IN HANDLE PortHandle,
|
|||
NamedPort->ConnectingPort = NULL;
|
||||
|
||||
ObDereferenceObject(NamedPort);
|
||||
|
||||
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
|
@ -340,7 +341,6 @@ NTSTATUS STDCALL NtQueryInformationPort (IN HANDLE PortHandle,
|
|||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
NTSTATUS STDCALL NtReplyPort (IN HANDLE PortHandle,
|
||||
IN PLPC_MESSAGE LpcReply /* guess */)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue