| 861 | } |
| 862 | |
| 863 | bool ProcessAccessHelp::suspendProcess() |
| 864 | { |
| 865 | if (NativeWinApi::NtSuspendProcess) |
| 866 | { |
| 867 | if (NT_SUCCESS( NativeWinApi::NtSuspendProcess(ProcessAccessHelp::hProcess) )) |
| 868 | { |
| 869 | return true; |
| 870 | } |
| 871 | } |
| 872 | |
| 873 | return false; |
| 874 | } |
| 875 | |
| 876 | bool ProcessAccessHelp::resumeProcess() |
| 877 | { |
nothing calls this directly
no outgoing calls
no test coverage detected