MCPcopy Create free account
hub / github.com/bytecode77/r77-rootkit / StringListContains

Function StringListContains

r77api/clist.c:150–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148 }
149}
150BOOL StringListContains(PSTRING_LIST list, LPCWSTR value)
151{
152 if (value)
153 {
154 for (DWORD i = 0; i < list->Count; i++)
155 {
156 if (list->IgnoreCase ? !StrCmpIW(list->Values[i], value) : !StrCmpW(list->Values[i], value)) return TRUE;
157 }
158 }
159
160 return FALSE;
161}
162BOOL CompareStringList(PSTRING_LIST listA, PSTRING_LIST listB)
163{
164 if (listA == listB)

Callers 6

IsProcessNameHiddenFunction · 0.85
IsPathHiddenFunction · 0.85
IsRegistryPathHiddenFunction · 0.85
IsServiceNameHiddenFunction · 0.85
IsUserNameHiddenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected