home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / SEHMAP.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  557b  |  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.