| 48 | } // namespace |
| 49 | |
| 50 | std::optional<uint64> GetProcessCreationTime(PID_t pid) { |
| 51 | return OSTPlatform::Process::GetCreationTime(pid); |
| 52 | } |
| 53 | |
| 54 | bool IsSteamProcessName(std::string_view name) { |
| 55 | std::string normalized = Lower(std::string(name)); |
no test coverage detected