mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 01:15:42 +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
|
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
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -28,6 +28,7 @@
|
||||||
//#define NDEBUG
|
//#define NDEBUG
|
||||||
#include <internal/debug.h>
|
#include <internal/debug.h>
|
||||||
|
|
||||||
|
|
||||||
/* TYPES ********************************************************************/
|
/* TYPES ********************************************************************/
|
||||||
|
|
||||||
#define EPORT_INACTIVE (0)
|
#define EPORT_INACTIVE (0)
|
||||||
|
@ -69,7 +70,7 @@ NTSTATUS NiInitPort(VOID)
|
||||||
{
|
{
|
||||||
ExPortType = ExAllocatePool(NonPagedPool,sizeof(OBJECT_TYPE));
|
ExPortType = ExAllocatePool(NonPagedPool,sizeof(OBJECT_TYPE));
|
||||||
|
|
||||||
RtlInitUnicodeString(&ExPortType->TypeName,L"Event");
|
RtlInitUnicodeString(&ExPortType->TypeName,L"Port");
|
||||||
|
|
||||||
ExPortType->MaxObjects = ULONG_MAX;
|
ExPortType->MaxObjects = ULONG_MAX;
|
||||||
ExPortType->MaxHandles = ULONG_MAX;
|
ExPortType->MaxHandles = ULONG_MAX;
|
||||||
|
@ -340,7 +341,6 @@ NTSTATUS STDCALL NtQueryInformationPort (IN HANDLE PortHandle,
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS STDCALL NtReplyPort (IN HANDLE PortHandle,
|
NTSTATUS STDCALL NtReplyPort (IN HANDLE PortHandle,
|
||||||
IN PLPC_MESSAGE LpcReply /* guess */)
|
IN PLPC_MESSAGE LpcReply /* guess */)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue