| 50 | } |
| 51 | |
| 52 | void DetourTransaction::attach_internal(void **function, void *detour) noexcept |
| 53 | { |
| 54 | FAIL_FAST_IF_WIN32_ERROR(DetourAttach(function, detour)); |
| 55 | } |
| 56 | |
| 57 | void DetourTransaction::detach_internal(void **function, void *detour) noexcept |
| 58 | { |
nothing calls this directly
no outgoing calls
no test coverage detected