Changeset 8208 for trunk/include/win/wine/exception.h
- Timestamp:
- Apr 7, 2002, 7:33:06 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/wine/exception.h
r640 r8208 1 /* $Id: exception.h,v 1. 1 1999-08-22 22:52:05sandervl Exp $ */1 /* $Id: exception.h,v 1.2 2002-04-07 17:33:06 sandervl Exp $ */ 2 2 /* 3 3 * Wine exception handling … … 54 54 * compiler exceptions will most certainly not work under Winelib. 55 55 */ 56 #ifdef USE_COMPILER_EXCEPTIONS57 58 #define __TRY __try59 #define __EXCEPT(func) __except((func)(GetExceptionInformation()))60 #define __FINALLY(func) __finally { (func)(!AbnormalTermination()); }56 //#ifdef USE_COMPILER_EXCEPTIONS 57 #if 1 58 #define __TRY if(1) 59 #define __EXCEPT(func) else 60 //#define __FINALLY(func) __finally { (func)(!AbnormalTermination()); } 61 61 #define __ENDTRY /*nothing*/ 62 62
Note:
See TracChangeset
for help on using the changeset viewer.