.NET
trapman.asc
Associated article: Windows Apps and Exception Handlers
Tags: .NET Tools
_WINDOWS APPS AND EXCEPTION HANDLERS_
by Joseph Hlavaty
Example 1:
#include <windows.h>
void _far MyGPProc() // handler for Trap D (13 decimal)
{
DebugBreak() ; // break to a waiting debugger
// Equivalent to _asm int 3h
FatalExit( 13 ) ; // exit the faulting task
}
Example 2:
;|*** #include &...


