| 178 | throw Except<HrError>("failed to check WOW64 status"); |
| 179 | } |
| 180 | std::wstring GuidToString(const GUID& guid) |
| 181 | { |
| 182 | wchar_t buf[64]; |
| 183 | int len = StringFromGUID2(guid, buf, 64); |
| 184 | return std::wstring(buf, len > 0 ? len - 1 : 0); // drop trailing null |
| 185 | } |
| 186 | |
| 187 | void ExplorePath(const std::filesystem::path& path) |
| 188 | { |
no outgoing calls
no test coverage detected