 |
Effective Exception Handling in Visual C++ - CodeProject
Terminate Handler When CRT encounters an unhandled C++ typed exception, it calls the terminate() function. To intercept such calls and take an appropriate action, you should set the error handler using the set_terminate() function. Here is a code example:
www.codeproject.com |
 |