mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
Use new interface names
svn path=/trunk/; revision=31849
This commit is contained in:
parent
e83b5427a6
commit
5914c98aa9
4 changed files with 8 additions and 12 deletions
|
@ -32,11 +32,7 @@ DWORD STDCALL RpcThreadRoutine(LPVOID lpParameter)
|
|||
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)
|
||||
{
|
||||
|
|
|
@ -127,7 +127,7 @@ ScmStartRpcServer(VOID)
|
|||
return;
|
||||
}
|
||||
|
||||
Status = RpcServerRegisterIf(svcctl_ServerIfHandle,
|
||||
Status = RpcServerRegisterIf(svcctl_v2_0_s_ifspec,
|
||||
NULL,
|
||||
NULL);
|
||||
if (Status != RPC_S_OK)
|
||||
|
|
|
@ -102,7 +102,7 @@ LsarStartRpcServer(VOID)
|
|||
return;
|
||||
}
|
||||
|
||||
Status = RpcServerRegisterIf(lsarpc_ServerIfHandle,
|
||||
Status = RpcServerRegisterIf(lsarpc_v0_0_s_ifspec,
|
||||
NULL,
|
||||
NULL);
|
||||
if (Status != RPC_S_OK)
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue