| 6 | Service::Service(wil::unique_schandle handle) noexcept:_handle(std::move(handle)){ } |
| 7 | |
| 8 | bool Service::Start() { |
| 9 | return Start(std::vector<const wchar_t*>()); |
| 10 | } |
| 11 | |
| 12 | bool Service::Start(const std::vector<const wchar_t*>& args) { |
| 13 | return ::StartService(_handle.get(), static_cast<DWORD>(args.size()), |
no test coverage detected