home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / uncaught.cpp < prev    next >
C/C++ Source or Header  |  1998-06-16  |  328b  |  16 lines

  1. // uncaught -- dummy uncaught_exception
  2. #include <exception>
  3. _STD_BEGIN
  4.  
  5. _CRTIMP2 bool __cdecl uncaught_exception()
  6.     {    // report if handling a throw
  7.     return (false);
  8.     }
  9.  
  10. _STD_END
  11.  
  12. /*
  13.  * Copyright (c) 1994 by P.J. Plauger.  ALL RIGHTS RESERVED. 
  14.  * Consult your license regarding permissions and restrictions.
  15.  */
  16.