| 44 | } |
| 45 | |
| 46 | void DetourTransaction::node_deleter::operator()(node *ptr) const noexcept |
| 47 | { |
| 48 | ptr->~node(); |
| 49 | FAIL_FAST_IF_WIN32_BOOL_FALSE(HeapFree(s_Heap.get(), 0, ptr)); |
| 50 | } |
| 51 | |
| 52 | void DetourTransaction::attach_internal(void **function, void *detour) noexcept |
| 53 | { |