标签: winapi exception exception-handling
在我的test.exe中,我挂钩了原始窗口异常:
SetUnhandledExceptionFilter(MyTopLevelFilter)
它工作正常,但如果在调用SetUnhandledExceptionFilter后,我将test.exe重命名为test_1.exe(当进程仍在运行时),则不会挂起新异常。
重命名运行进程后如何继续挂钩异常?我无法回想起SetUnhandledExceptionFilter,因为我不知道何时会重命名我的进程。