Implemented RpcRaiseException.
This commit is contained in:
parent
882fc0383f
commit
5d121fbe05
|
@ -109,7 +109,7 @@
|
|||
@ stub RpcObjectSetType
|
||||
@ stub RpcProtseqVectorFreeA
|
||||
@ stub RpcProtseqVectorFreeW
|
||||
@ stub RpcRaiseException
|
||||
@ stdcall RpcRaiseException(long) RpcRaiseException
|
||||
@ stub RpcRegisterAsyncInfo
|
||||
@ stub RpcRevertToSelf
|
||||
@ stub RpcRevertToSelfEx
|
||||
|
|
|
@ -213,6 +213,17 @@ RPC_STATUS WINAPI RpcStringFreeW(unsigned short** String)
|
|||
return RPC_S_OK;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* RpcRaiseException [RPCRT4.@]
|
||||
*
|
||||
* Raises an exception.
|
||||
*/
|
||||
void WINAPI RpcRaiseException(RPC_STATUS exception)
|
||||
{
|
||||
/* FIXME: translate exception? */
|
||||
RaiseException(exception, 0, 0, NULL);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* UuidCompare [RPCRT4.@]
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue