mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
Register the LPC Port object object in the system name space.
svn path=/trunk/; revision=10390
This commit is contained in:
parent
3faddac950
commit
bde15621e5
1 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: port.c,v 1.17 2004/02/02 23:48:42 ea Exp $
|
/* $Id: port.c,v 1.18 2004/08/04 12:50:42 ea Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -67,6 +67,8 @@ NiInitPort (VOID)
|
||||||
ExPortType->Create = NiCreatePort;
|
ExPortType->Create = NiCreatePort;
|
||||||
ExPortType->DuplicationNotify = NULL;
|
ExPortType->DuplicationNotify = NULL;
|
||||||
|
|
||||||
|
ObpCreateTypeObject(ExPortType);
|
||||||
|
|
||||||
EiNextLpcMessageId = 0;
|
EiNextLpcMessageId = 0;
|
||||||
|
|
||||||
return(STATUS_SUCCESS);
|
return(STATUS_SUCCESS);
|
||||||
|
@ -75,7 +77,7 @@ NiInitPort (VOID)
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* NAME INTERNAL
|
* NAME INTERNAL
|
||||||
* NiInitializePort
|
* NiInitializePort/3
|
||||||
*
|
*
|
||||||
* DESCRIPTION
|
* DESCRIPTION
|
||||||
* Initialize the EPORT object attributes. The Port
|
* Initialize the EPORT object attributes. The Port
|
||||||
|
@ -120,7 +122,7 @@ NiInitializePort (IN OUT PEPORT Port,
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* NAME SYSTEM
|
* NAME SYSTEM
|
||||||
* NtImpersonateClientOfPort@8
|
* NtImpersonateClientOfPort/2
|
||||||
*
|
*
|
||||||
* DESCRIPTION
|
* DESCRIPTION
|
||||||
*
|
*
|
||||||
|
@ -138,6 +140,4 @@ NtImpersonateClientOfPort (HANDLE PortHandle,
|
||||||
return(STATUS_NOT_IMPLEMENTED);
|
return(STATUS_NOT_IMPLEMENTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Reference in a new issue