Author: hpoussin Date: Fri Jan 18 13:08:49 2008 New Revision: 31849
URL: http://svn.reactos.org/svn/reactos?rev=31849&view=rev Log: Use new interface names
Modified: trunk/reactos/base/services/eventlog/rpc.c trunk/reactos/base/system/services/rpcserver.c trunk/reactos/dll/win32/lsasrv/lsarpc.c trunk/reactos/include/reactos/idl/idl.rbuild
Modified: trunk/reactos/base/services/eventlog/rpc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/eventlog/rpc.... ============================================================================== --- trunk/reactos/base/services/eventlog/rpc.c (original) +++ trunk/reactos/base/services/eventlog/rpc.c Fri Jan 18 13:08:49 2008 @@ -32,11 +32,7 @@ return 0; }
-#ifdef _MSC_VER Status = RpcServerRegisterIf(eventlog_v0_0_s_ifspec, NULL, NULL); -#else - Status = RpcServerRegisterIf(eventlog_ServerIfHandle, NULL, NULL); -#endif
if (Status != RPC_S_OK) {
Modified: trunk/reactos/base/system/services/rpcserver.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/services/rpcser... ============================================================================== --- trunk/reactos/base/system/services/rpcserver.c (original) +++ trunk/reactos/base/system/services/rpcserver.c Fri Jan 18 13:08:49 2008 @@ -127,7 +127,7 @@ return; }
- Status = RpcServerRegisterIf(svcctl_ServerIfHandle, + Status = RpcServerRegisterIf(svcctl_v2_0_s_ifspec, NULL, NULL); if (Status != RPC_S_OK)
Modified: trunk/reactos/dll/win32/lsasrv/lsarpc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/lsasrv/lsarpc.c?r... ============================================================================== --- trunk/reactos/dll/win32/lsasrv/lsarpc.c (original) +++ trunk/reactos/dll/win32/lsasrv/lsarpc.c Fri Jan 18 13:08:49 2008 @@ -102,7 +102,7 @@ return; }
- Status = RpcServerRegisterIf(lsarpc_ServerIfHandle, + Status = RpcServerRegisterIf(lsarpc_v0_0_s_ifspec, NULL, NULL); if (Status != RPC_S_OK)
Modified: trunk/reactos/include/reactos/idl/idl.rbuild URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/idl/idl.rbu... ============================================================================== --- trunk/reactos/include/reactos/idl/idl.rbuild (original) +++ trunk/reactos/include/reactos/idl/idl.rbuild Fri Jan 18 13:08:49 2008 @@ -8,21 +8,21 @@ <file>pnp.idl</file> </module> <module name="scm_server" type="rpcserver"> - <file switches="--oldnames">svcctl.idl</file> + <file>svcctl.idl</file> </module> <module name="scm_client" type="rpcclient"> - <file switches="--oldnames">svcctl.idl</file> + <file>svcctl.idl</file> </module> <module name="eventlog_server" type="rpcserver" allowwarnings="true"> - <file switches="--oldnames">eventlogrpc.idl</file> + <file>eventlogrpc.idl</file> </module> <module name="eventlog_client" type="rpcclient" > - <file switches="--oldnames">eventlogrpc.idl</file> + <file>eventlogrpc.idl</file> </module> <module name="lsa_server" type="rpcserver"> - <file switches="--oldnames">lsa.idl</file> + <file>lsa.idl</file> </module> <module name="lsa_client" type="rpcclient"> - <file switches="--oldnames">lsa.idl</file> + <file>lsa.idl</file> </module> </group>