| 15 | } |
| 16 | |
| 17 | bool Service::Stop() { |
| 18 | SERVICE_STATUS status; |
| 19 | return ::ControlService(_handle.get(), SERVICE_CONTROL_STOP, &status) ? true : false; |
| 20 | } |
| 21 | |
| 22 | bool Service::Pause() { |
| 23 | SERVICE_STATUS status; |
no outgoing calls
no test coverage detected