| 75 | } |
| 76 | |
| 77 | WinSys::ServiceSidType ServiceInfoEx::GetSidType() const { |
| 78 | auto svc = Service::Open(_name, ServiceAccessMask::QueryConfig); |
| 79 | ServiceSidType type = ServiceSidType::Unknow; |
| 80 | if (svc) |
| 81 | type = svc->GetSidType(); |
| 82 | return type; |
| 83 | } |
no outgoing calls
no test coverage detected