Implemented RpcRaiseException.

This commit is contained in:
Ove Kaaven 2003-01-31 03:22:27 +00:00 committed by Alexandre Julliard
parent 882fc0383f
commit 5d121fbe05
2 changed files with 12 additions and 1 deletions

View File

@ -109,7 +109,7 @@
@ stub RpcObjectSetType
@ stub RpcProtseqVectorFreeA
@ stub RpcProtseqVectorFreeW
@ stub RpcRaiseException
@ stdcall RpcRaiseException(long) RpcRaiseException
@ stub RpcRegisterAsyncInfo
@ stub RpcRevertToSelf
@ stub RpcRevertToSelfEx

View File

@ -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.@]
*