home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / win32 / Sehmap.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-08  |  557 b   |  23 lines

  1. /*
  2.  
  3.   SEHMAP.H - Map old-style structured exception handling to correct names.
  4.  
  5.   The mapping of structured exception handling statements from {try, except,
  6.   finally, leave} to their proper names (prefaced by "__") has been removed
  7.   from win32.mak.  This header is provided solely for compatibility with
  8.   source code that used the older convention.
  9.  
  10. */
  11.  
  12.  
  13. #ifndef __cplusplus
  14. #undef try
  15. #undef except
  16. #undef finally
  17. #undef leave
  18. #define try     __try
  19. #define except  __except
  20. #define finally __finally
  21. #define leave   __leave
  22. #endif
  23.