| 581 | } |
| 582 | |
| 583 | void MessageInput::close_target_process() |
| 584 | { |
| 585 | if (!target_process_handle_) { |
| 586 | return; |
| 587 | } |
| 588 | CloseHandle(target_process_handle_); |
| 589 | target_process_handle_ = nullptr; |
| 590 | } |
| 591 | |
| 592 | void MessageInput::suspend_target_process() |
| 593 | { |
nothing calls this directly
no outgoing calls
no test coverage detected