rpcrt4: Add a stub for RpcBindingSetOption.

This commit is contained in:
Robert Shearman 2006-05-01 10:38:18 +01:00 committed by Alexandre Julliard
parent 9519004b1a
commit a4f5296ec6
2 changed files with 10 additions and 1 deletions

View File

@ -1040,3 +1040,12 @@ RpcBindingSetAuthInfoW( RPC_BINDING_HANDLE Binding, unsigned short *ServerPrincN
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;
}

View File

@ -390,7 +390,7 @@
@ 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)