2007-10-19 23:21:45 +00:00
|
|
|
/*
|
2006-06-21 11:25:22 +00:00
|
|
|
* PROJECT: ReactOS RpcSs service
|
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
|
|
* FILE: services/rpcss/rpcss.c
|
|
|
|
* PURPOSE: Endpoint mapper
|
|
|
|
* COPYRIGHT: Copyright 2002 Eric Kohl
|
2002-06-25 21:11:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
|
2005-10-19 17:03:38 +00:00
|
|
|
#include "rpc.h"
|
2002-06-25 21:11:11 +00:00
|
|
|
|
|
|
|
/* FUNCTIONS ****************************************************************/
|
|
|
|
|
|
|
|
VOID
|
|
|
|
StartEndpointMapper(VOID)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
RpcServerRegisterProtseqW("ncacn_np", 1, "\pipe\epmapper");
|
|
|
|
|
|
|
|
RpcServerRegisterProtseqW("ncalrpc", 1, "epmapper");
|
|
|
|
|
|
|
|
RpcServerRegisterIf(epmapper_InterfaceHandle, 0, 0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* EOF */
|