rpcrt4: Add stubs for RpcMgmtSetCancelTimeout and RpcCancelThread.
This commit is contained in:
parent
ebe885d782
commit
7ad36eabfc
|
@ -395,7 +395,7 @@
|
||||||
@ stdcall RpcBindingToStringBindingW(ptr ptr)
|
@ stdcall RpcBindingToStringBindingW(ptr ptr)
|
||||||
@ stdcall RpcBindingVectorFree(ptr)
|
@ stdcall RpcBindingVectorFree(ptr)
|
||||||
@ stub RpcCancelAsyncCall
|
@ stub RpcCancelAsyncCall
|
||||||
@ stub RpcCancelThread
|
@ stdcall RpcCancelThread(ptr)
|
||||||
@ stub RpcCancelThreadEx
|
@ stub RpcCancelThreadEx
|
||||||
@ stub RpcCertGeneratePrincipalNameA
|
@ stub RpcCertGeneratePrincipalNameA
|
||||||
@ stub RpcCertGeneratePrincipalNameW
|
@ stub RpcCertGeneratePrincipalNameW
|
||||||
|
@ -438,7 +438,7 @@
|
||||||
@ stub RpcMgmtInqStats
|
@ stub RpcMgmtInqStats
|
||||||
@ stdcall RpcMgmtIsServerListening(ptr)
|
@ stdcall RpcMgmtIsServerListening(ptr)
|
||||||
@ stub RpcMgmtSetAuthorizationFn
|
@ stub RpcMgmtSetAuthorizationFn
|
||||||
@ stub RpcMgmtSetCancelTimeout
|
@ stdcall RpcMgmtSetCancelTimeout(long)
|
||||||
@ stdcall RpcMgmtSetComTimeout(ptr long)
|
@ stdcall RpcMgmtSetComTimeout(ptr long)
|
||||||
@ stub RpcMgmtSetParameter # win9x
|
@ stub RpcMgmtSetParameter # win9x
|
||||||
@ stdcall RpcMgmtSetServerStackSize(long)
|
@ stdcall RpcMgmtSetServerStackSize(long)
|
||||||
|
|
|
@ -837,3 +837,21 @@ RPC_STATUS RPC_ENTRY RpcErrorStartEnumeration(void** EnumHandle)
|
||||||
FIXME("(%p): stub\n", EnumHandle);
|
FIXME("(%p): stub\n", EnumHandle);
|
||||||
return RPC_S_ENTRY_NOT_FOUND;
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue