Commit 7d92b89a authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

rpcrt4: Stubs for RpcRevertToSelf and RpcMgmtSetComTimeout.

parent 45d42528
...@@ -953,6 +953,24 @@ ULONG RpcAuthInfo_Release(RpcAuthInfo *AuthInfo) ...@@ -953,6 +953,24 @@ ULONG RpcAuthInfo_Release(RpcAuthInfo *AuthInfo)
} }
/*********************************************************************** /***********************************************************************
* RpcRevertToSelf (RPCRT4.@)
*/
RPC_STATUS WINAPI RpcRevertToSelf(void)
{
FIXME("stub\n");
return RPC_S_OK;
}
/***********************************************************************
* RpcMgmtSetComTimeout (RPCRT4.@)
*/
RPC_STATUS WINAPI RpcMgmtSetComTimeout(RPC_BINDING_HANDLE BindingHandle, unsigned int Timeout)
{
FIXME("(%p, %d): stub\n", BindingHandle, Timeout);
return RPC_S_OK;
}
/***********************************************************************
* RpcBindingInqAuthInfoExA (RPCRT4.@) * RpcBindingInqAuthInfoExA (RPCRT4.@)
*/ */
RPCRTAPI RPC_STATUS RPC_ENTRY RPCRTAPI RPC_STATUS RPC_ENTRY
......
...@@ -439,7 +439,7 @@ ...@@ -439,7 +439,7 @@
@ stdcall RpcMgmtIsServerListening(ptr) @ stdcall RpcMgmtIsServerListening(ptr)
@ stub RpcMgmtSetAuthorizationFn @ stub RpcMgmtSetAuthorizationFn
@ stub RpcMgmtSetCancelTimeout @ stub RpcMgmtSetCancelTimeout
@ stub RpcMgmtSetComTimeout @ stdcall RpcMgmtSetComTimeout(ptr long)
@ stub RpcMgmtSetParameter # win9x @ stub RpcMgmtSetParameter # win9x
@ stub RpcMgmtSetServerStackSize @ stub RpcMgmtSetServerStackSize
@ stub RpcMgmtStatsVectorFree @ stub RpcMgmtStatsVectorFree
...@@ -458,7 +458,7 @@ ...@@ -458,7 +458,7 @@
@ stub RpcProtseqVectorFreeW @ stub RpcProtseqVectorFreeW
@ stdcall RpcRaiseException(long) @ stdcall RpcRaiseException(long)
@ stub RpcRegisterAsyncInfo @ stub RpcRegisterAsyncInfo
@ stub RpcRevertToSelf @ stdcall RpcRevertToSelf()
@ stdcall RpcRevertToSelfEx(ptr) @ stdcall RpcRevertToSelfEx(ptr)
@ stdcall RpcServerInqBindings(ptr) @ stdcall RpcServerInqBindings(ptr)
@ stub RpcServerInqCallAttributesA # wxp @ stub RpcServerInqCallAttributesA # wxp
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment