I see that Greg's exception stuff is not in Wine yet. Until that's accepted, this'll have to do. Log: Ove Kaaven <ovek@transgaming.com> Dummy RPC exception macros. Index: include/rpc.h =================================================================== RCS file: /cvsroot/rewind/rewind/include/rpc.h,v retrieving revision 1.10 diff -u -r1.10 rpc.h --- include/rpc.h 19 Dec 2002 18:41:07 -0000 1.10 +++ include/rpc.h 19 Apr 2003 15:37:55 -0000 @@ -33,4 +33,14 @@ /* #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 */