| 42 | } |
| 43 | |
| 44 | BOOL IsProcessIdHidden(DWORD processId) |
| 45 | { |
| 46 | return Configuration && IntegerListContains(Configuration->HiddenProcessIds, processId); |
| 47 | } |
| 48 | BOOL IsProcessNameHidden(LPCWSTR name) |
| 49 | { |
| 50 | return Configuration && StringListContains(Configuration->HiddenProcessNames, name); |
no test coverage detected