提供机制而不是策略!!!">Python注册Windows SEH过滤器,捕获SEH异常 发表于 2023-03-14 分类于 Python , 异常处理 阅读次数: 本文字数: 0 阅读时长 ≈ 1 分钟
1234567
import ctypes@ctypes.WINFUNCTYPE(ctypes.wintypes.LONG, ctypes.c_void_p)def windows_seh_dummy_handler(exception_info_pointer): return 1 # EXCEPTION_EXECUTE_HANDLERctypes.windll.kernel32.SetUnhandledExceptionFilter(windows_seh_dummy_handler)
微信支付
欢迎关注我的其它发布渠道