mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 18:02:05 +00:00
27 lines
655 B
C
27 lines
655 B
C
/*
|
|
* 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
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include "rpc.h"
|
|
|
|
/* FUNCTIONS ****************************************************************/
|
|
|
|
VOID
|
|
StartEndpointMapper(VOID)
|
|
{
|
|
#if 0
|
|
RpcServerRegisterProtseqW("ncacn_np", 1, "\pipe\epmapper");
|
|
|
|
RpcServerRegisterProtseqW("ncalrpc", 1, "epmapper");
|
|
|
|
RpcServerRegisterIf(epmapper_InterfaceHandle, 0, 0);
|
|
#endif
|
|
}
|
|
|
|
/* EOF */
|