| 13 | namespace PIME { |
| 14 | |
| 15 | static std::wstring sidToStr(PSID sid) { |
| 16 | std::wstring sidStr; |
| 17 | LPWSTR buf = nullptr; |
| 18 | if (::ConvertSidToStringSidW(sid, &buf)) { |
| 19 | sidStr = buf; |
| 20 | ::LocalFree(buf); |
| 21 | } |
| 22 | return sidStr; |
| 23 | } |
| 24 | |
| 25 | |
| 26 | static std::wstring getLogonSid() { |
no outgoing calls
no test coverage detected