| 116 | } |
| 117 | |
| 118 | struct veh_installer { |
| 119 | PVOID h; |
| 120 | veh_installer() noexcept : h(AddVectoredExceptionHandler(1, veh)) {} |
| 121 | ~veh_installer() noexcept { RemoveVectoredExceptionHandler(h); } |
| 122 | } installer; |
| 123 | |
| 124 | } |
| 125 |
nothing calls this directly
no outgoing calls
no test coverage detected