From 381e64758b3f42945497107f2f7899af371a81ff Mon Sep 17 00:00:00 2001 From: Ove Kaaven Date: Sat, 19 Apr 2003 20:06:58 +0000 Subject: [PATCH] Dummy RPC exception macros. --- include/rpc.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/rpc.h b/include/rpc.h index 28be46e4334..c395132b7a3 100644 --- a/include/rpc.h +++ b/include/rpc.h @@ -49,4 +49,14 @@ typedef void* I_RPC_HANDLE; #include "excpt.h" #include "winerror.h" +/* ignore exception handling for now */ +#define RpcTryExcept if (1) { +#define RpcExcept(expr) } else { +#define RpcEndExcept } +#define RpcTryFinally +#define RpcFinally +#define RpcEndFinally +#define RpcExceptionCode() 0 +/* #define RpcAbnormalTermination() abort() */ + #endif /*__WINE_RPC_H */