Files
tge/TBE/MinGW/doc/drmingw/samples/exchndl2.cxx
2026-01-14 10:27:57 -06:00

21 lines
287 B
C++

/* exchndl2.cxx
*
* A portable way to load the EXCHNDL.DLL on startup.
*
* Jose Fonseca
*/
#include <windows.h>
class ExceptionHandler
{
public:
ExceptionHandler()
{
LoadLibrary("exchndl.dll");
}
};
static ExceptionHandler gExceptionHandler; // global instance of class