Shutdown exception handling for Win32/C++

后端 未结 3 689
执笔经年
执笔经年 2021-01-24 12:50

I have a process that handles exceptions great. It calls:

_set_se_translator(exception_trans_func); 
SetUnhandledExceptionFilter(UnhandledExceptionFilterHandler         


        
3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-24 13:29

    What operating system are they running?

    I assume you're setting the error mode using something like

    ::SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX);

    to make sure that windows isn't jumping in with its own error handling?

提交回复
热议问题