home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / sehmap.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  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.