Commit 5d121fbe authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Implemented RpcRaiseException.

parent 882fc038
......@@ -109,7 +109,7 @@
@ stub RpcObjectSetType
@ stub RpcProtseqVectorFreeA
@ stub RpcProtseqVectorFreeW
@ stub RpcRaiseException
@ stdcall RpcRaiseException(long) RpcRaiseException
@ stub RpcRegisterAsyncInfo
@ stub RpcRevertToSelf
@ stub RpcRevertToSelfEx
......
......@@ -214,6 +214,17 @@ RPC_STATUS WINAPI RpcStringFreeW(unsigned short** String)
}
/*************************************************************************
* RpcRaiseException [RPCRT4.@]
*
* Raises an exception.
*/
void WINAPI RpcRaiseException(RPC_STATUS exception)
{
/* FIXME: translate exception? */
RaiseException(exception, 0, 0, NULL);
}
/*************************************************************************
* UuidCompare [RPCRT4.@]
*
* (an educated-guess implementation)
......
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