| 103 | } |
| 104 | |
| 105 | ProcessProperties ProcessInfo::GetProcessProperties(DWORD processId, const std::wstring& processName) |
| 106 | { |
| 107 | auto uid = GetUid(processId, processName); |
| 108 | ProcessProperties props(m_processProperties[uid]); |
| 109 | props.uid = uid; |
| 110 | return props; |
| 111 | } |
| 112 | |
| 113 | ProcessProperties ProcessInfo::GetProcessProperties(DWORD uid) const |
| 114 | { |
no test coverage detected