其实现文件为:
#include "structured_exception.h"
#include "eh.h"
//
// ::
//
static void my_translator(unsigned, exception_pointers *info)
{
throw structured_exception(*info);
}
//
// structured_exception::
//
structured_exception::structured_exception
(exception_pointers const &info) throw()
{
exception_record const &exception = *(info.exceptionrecord);
address_ = exception.exceptionaddress;
code_ = exception.exceptioncode;
}