rpcrt4: Add stubs for RpcMgmtSetCancelTimeout and RpcCancelThread.

This commit is contained in:
Rob Shearman 2007-11-06 15:55:06 +00:00 committed by Alexandre Julliard
parent ebe885d782
commit 7ad36eabfc
2 changed files with 20 additions and 2 deletions

View file

@ -395,7 +395,7 @@
@ stdcall RpcBindingToStringBindingW(ptr ptr)
@ stdcall RpcBindingVectorFree(ptr)
@ stub RpcCancelAsyncCall
@ stub RpcCancelThread
@ stdcall RpcCancelThread(ptr)
@ stub RpcCancelThreadEx
@ stub RpcCertGeneratePrincipalNameA
@ stub RpcCertGeneratePrincipalNameW
@ -438,7 +438,7 @@
@ stub RpcMgmtInqStats
@ stdcall RpcMgmtIsServerListening(ptr)
@ stub RpcMgmtSetAuthorizationFn
@ stub RpcMgmtSetCancelTimeout
@ stdcall RpcMgmtSetCancelTimeout(long)
@ stdcall RpcMgmtSetComTimeout(ptr long)
@ stub RpcMgmtSetParameter # win9x
@ stdcall RpcMgmtSetServerStackSize(long)

View file

@ -837,3 +837,21 @@ RPC_STATUS RPC_ENTRY RpcErrorStartEnumeration(void** EnumHandle)
FIXME("(%p): stub\n", EnumHandle);
return RPC_S_ENTRY_NOT_FOUND;
}
/******************************************************************************
* RpcMgmtSetCancelTimeout (rpcrt4.@)
*/
RPC_STATUS RPC_ENTRY RpcMgmtSetCancelTimeout(LONG Timeout)
{
FIXME("(%d): stub\n", Timeout);
return RPC_S_OK;
}
/******************************************************************************
* RpcCancelThread (rpcrt4.@)
*/
RPC_STATUS RPC_ENTRY RpcCancelThread(HANDLE ThreadHandle)
{
FIXME("(%p): stub\n", ThreadHandle);
return RPC_S_OK;
}