Implement some functions that are forwarded to HAL on x86 build, but not on x64....
[reactos.git] / reactos / base / services / rpcss / rpcss.c
1 /*
2 * PROJECT: ReactOS RpcSs service
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: services/rpcss/rpcss.c
5 * PURPOSE: Service initialization
6 * COPYRIGHT: Copyright 2002 Eric Kohl
7 */
8
9 /* INCLUDES *****************************************************************/
10
11 #include "rpcss.h"
12
13 #define NDEBUG
14 #include <debug.h>
15
16
17
18 /* GLOBALS ******************************************************************/
19
20
21
22 /* FUNCTIONS *****************************************************************/
23
24
25 VOID CALLBACK
26 ServiceMain(DWORD argc, LPTSTR *argv)
27 {
28
29 DPRINT("ServiceMain() called\n");
30
31 StartEndpointMapper();
32
33 DPRINT("ServiceMain() done\n");
34 }
35
36
37 int main(int argc, char *argv[])
38 {
39 #if 0
40 SERVICE_TABLE_ENTRY ServiceTable[] = {{"RpcSs", ServiceMain},{NULL, NULL}};
41 #endif
42
43 DPRINT("RpcSs service\n");
44
45 #if 0
46 StartServiceCtrlDispatcher(ServiceTable);
47 #endif
48
49 ServiceMain(0, NULL);
50
51 DPRINT("RpcSS: done\n");
52
53 return 0;
54 }
55
56 /* EOF */