| 12 | using std::string; |
| 13 | |
| 14 | RemoteProcess::RemoteProcess() { |
| 15 | this->process_token = (HANDLE)NULL; |
| 16 | this->handle = (HANDLE)NULL; |
| 17 | this->remote_thread = (HANDLE)NULL; |
| 18 | } |
| 19 | |
| 20 | void RemoteProcess::setSignal(Signal* the_signal) { |
| 21 | this->the_signal = the_signal; |
nothing calls this directly
no outgoing calls
no test coverage detected