| 874 | } |
| 875 | |
| 876 | bool ProcessAccessHelp::resumeProcess() |
| 877 | { |
| 878 | if (NativeWinApi::NtResumeProcess) |
| 879 | { |
| 880 | if (NT_SUCCESS( NativeWinApi::NtResumeProcess(ProcessAccessHelp::hProcess) )) |
| 881 | { |
| 882 | return true; |
| 883 | } |
| 884 | } |
| 885 | |
| 886 | return false; |
| 887 | } |
| 888 | |
| 889 | bool ProcessAccessHelp::terminateProcess() |
| 890 | { |
nothing calls this directly
no outgoing calls
no test coverage detected