| 46 | return Configuration && IntegerListContains(Configuration->HiddenProcessIds, processId); |
| 47 | } |
| 48 | BOOL IsProcessNameHidden(LPCWSTR name) |
| 49 | { |
| 50 | return Configuration && StringListContains(Configuration->HiddenProcessNames, name); |
| 51 | } |
| 52 | BOOL IsProcessNameHiddenU(UNICODE_STRING name) |
| 53 | { |
| 54 | PWCHAR chars = ConvertUnicodeStringToString(name); |
no test coverage detected