exit(retcode);
}
__except (_XcptFilter(retcode = GetExceptionCode(), GetExceptionInformation()))
{
/*
* Should never reach here unless UnHandled Exception Filter does
* not pass the exception to the debugger
*/
_exit(retcode);
} /* end of try - except */
}