rpcrt4: Add a stub for RpcCancelThreadEx.
This commit is contained in:
parent
49c682470c
commit
f15287dea7
|
@ -363,7 +363,7 @@
|
|||
@ stdcall RpcBindingVectorFree(ptr)
|
||||
@ stdcall RpcCancelAsyncCall(ptr long) RpcAsyncCancelCall
|
||||
@ stdcall RpcCancelThread(ptr)
|
||||
@ stub RpcCancelThreadEx
|
||||
@ stdcall RpcCancelThreadEx(ptr long)
|
||||
@ stub RpcCertGeneratePrincipalNameA
|
||||
@ stub RpcCertGeneratePrincipalNameW
|
||||
@ stdcall RpcCompleteAsyncCall(ptr ptr) RpcAsyncCompleteCall
|
||||
|
|
|
@ -1081,3 +1081,12 @@ RPC_STATUS RPC_ENTRY RpcCancelThread(void* ThreadHandle)
|
|||
|
||||
return RPC_S_OK;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* RpcCancelThreadEx (rpcrt4.@)
|
||||
*/
|
||||
RPC_STATUS RPC_ENTRY RpcCancelThreadEx(void* ThreadHandle, LONG Timeout)
|
||||
{
|
||||
FIXME("(%p, %d)\n", ThreadHandle, Timeout);
|
||||
return RPC_S_OK;
|
||||
}
|
||||
|
|
|
@ -469,6 +469,7 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
|
|||
#define RpcBindingInqAuthInfo WINELIB_NAME_AW(RpcBindingInqAuthInfo)
|
||||
|
||||
RPCRTAPI RPC_STATUS RPC_ENTRY RpcCancelThread(void*);
|
||||
RPCRTAPI RPC_STATUS RPC_ENTRY RpcCancelThreadEx(void*,LONG);
|
||||
|
||||
RPCRTAPI RPC_STATUS RPC_ENTRY
|
||||
RpcNetworkIsProtseqValidA( RPC_CSTR protseq );
|
||||
|
|
Loading…
Reference in New Issue