mirror of
https://github.com/reactos/reactos.git
synced 2025-08-01 21:03:14 +00:00
[RPCRT4]
Add a lazy stub for RpcBindingServerFromClient to get my upcoming localspl changes to compile. This needs further attention later. svn path=/branches/colins-printing-for-freedom/; revision=68193
This commit is contained in:
parent
f1377fcb7c
commit
1793014ec3
3 changed files with 13 additions and 1 deletions
|
@ -802,6 +802,16 @@ RPC_STATUS WINAPI RpcBindingInqObject( RPC_BINDING_HANDLE Binding, UUID* ObjectU
|
||||||
return RPC_S_OK;
|
return RPC_S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* RpcBindingServerFromClient (RPCRT4.@)
|
||||||
|
*/
|
||||||
|
RPC_STATUS WINAPI RpcBindingServerFromClient(RPC_BINDING_HANDLE ClientBinding, RPC_BINDING_HANDLE* ServerBinding)
|
||||||
|
{
|
||||||
|
/* This is a stub, just fail for now. */
|
||||||
|
return RPC_S_INVALID_ARG;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* RpcBindingSetObject (RPCRT4.@)
|
* RpcBindingSetObject (RPCRT4.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -345,7 +345,7 @@
|
||||||
@ stdcall RpcBindingInqObject(ptr ptr)
|
@ stdcall RpcBindingInqObject(ptr ptr)
|
||||||
@ stub RpcBindingInqOption
|
@ stub RpcBindingInqOption
|
||||||
@ stdcall RpcBindingReset(ptr)
|
@ stdcall RpcBindingReset(ptr)
|
||||||
@ stub RpcBindingServerFromClient
|
@ stdcall RpcBindingServerFromClient(ptr ptr)
|
||||||
@ stdcall RpcBindingSetAuthInfoA(ptr str long long ptr long)
|
@ stdcall RpcBindingSetAuthInfoA(ptr str long long ptr long)
|
||||||
@ stdcall RpcBindingSetAuthInfoExA(ptr str long long ptr long ptr)
|
@ stdcall RpcBindingSetAuthInfoExA(ptr str long long ptr long ptr)
|
||||||
@ stdcall RpcBindingSetAuthInfoExW(ptr wstr long long ptr long ptr)
|
@ stdcall RpcBindingSetAuthInfoExW(ptr wstr long long ptr long ptr)
|
||||||
|
|
|
@ -337,6 +337,8 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
|
||||||
RpcBindingInqOption( RPC_BINDING_HANDLE Binding, ULONG Option, ULONG_PTR *OptionValue );
|
RpcBindingInqOption( RPC_BINDING_HANDLE Binding, ULONG Option, ULONG_PTR *OptionValue );
|
||||||
RPCRTAPI RPC_STATUS RPC_ENTRY
|
RPCRTAPI RPC_STATUS RPC_ENTRY
|
||||||
RpcBindingReset( RPC_BINDING_HANDLE Binding );
|
RpcBindingReset( RPC_BINDING_HANDLE Binding );
|
||||||
|
RPCRTAPI RPC_STATUS RPC_ENTRY
|
||||||
|
RpcBindingServerFromClient( RPC_BINDING_HANDLE ClientBinding, RPC_BINDING_HANDLE* ServerBinding );
|
||||||
RPCRTAPI RPC_STATUS RPC_ENTRY
|
RPCRTAPI RPC_STATUS RPC_ENTRY
|
||||||
RpcBindingSetObject( RPC_BINDING_HANDLE Binding, UUID* ObjectUuid );
|
RpcBindingSetObject( RPC_BINDING_HANDLE Binding, UUID* ObjectUuid );
|
||||||
RPCRTAPI RPC_STATUS RPC_ENTRY
|
RPCRTAPI RPC_STATUS RPC_ENTRY
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue