Module: wine Branch: refs/heads/master Commit: a4f5296ec6fb5ba06beb7143401a2418195bfd48 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=a4f5296ec6fb5ba06beb7143...
Author: Robert Shearman rob@codeweavers.com Date: Mon May 1 10:38:18 2006 +0100
rpcrt4: Add a stub for RpcBindingSetOption.
---
dlls/rpcrt4/rpc_binding.c | 9 +++++++++ dlls/rpcrt4/rpcrt4.spec | 2 +- 2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/dlls/rpcrt4/rpc_binding.c b/dlls/rpcrt4/rpc_binding.c index 71ebaa6..58e5eef 100644 --- a/dlls/rpcrt4/rpc_binding.c +++ b/dlls/rpcrt4/rpc_binding.c @@ -1040,3 +1040,12 @@ RpcBindingSetAuthInfoW( RPC_BINDING_HAND AuthnLevel, AuthnSvc, AuthIdentity, AuthzSvr); return RPC_S_OK; } + +/*********************************************************************** + * RpcBindingSetOption (RPCRT4.@) + */ +RPC_STATUS WINAPI RpcBindingSetOption(RPC_BINDING_HANDLE BindingHandle, ULONG Option, ULONG OptionValue) +{ + FIXME("(%p, %ld, %ld): stub\n", BindingHandle, Option, OptionValue); + return RPC_S_OK; +} diff --git a/dlls/rpcrt4/rpcrt4.spec b/dlls/rpcrt4/rpcrt4.spec index ea84ba0..8034f22 100644 --- a/dlls/rpcrt4/rpcrt4.spec +++ b/dlls/rpcrt4/rpcrt4.spec @@ -390,7 +390,7 @@ # 9x version of I_RpcBindingSetAsync has @ stdcall RpcBindingSetAuthInfoExW(ptr wstr long long ptr long ptr) @ stdcall RpcBindingSetAuthInfoW(ptr wstr long long ptr long) @ stdcall RpcBindingSetObject(ptr ptr) -@ stub RpcBindingSetOption +@ stdcall RpcBindingSetOption(ptr long long) @ stdcall RpcBindingToStringBindingA(ptr ptr) @ stdcall RpcBindingToStringBindingW(ptr ptr) @ stdcall RpcBindingVectorFree(ptr)