1 2 #include <precomp.h> 3 4 5 _CRTIMP 6 EXCEPTION_DISPOSITION 7 __cdecl 8 __C_specific_handler( 9 struct _EXCEPTION_RECORD *_ExceptionRecord, 10 void *_EstablisherFrame, 11 struct _CONTEXT *_ContextRecord, 12 struct _DISPATCHER_CONTEXT *_DispatcherContext) 13 { 14 UNIMPLEMENTED; 15 __debugbreak(); 16 return 0; 17 } 18 19 void __cdecl _local_unwind(void* frame, void* target) 20 { 21 RtlUnwind(frame, target, NULL, 0); 22 } 23