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 */