| 148 | } |
| 149 | } |
| 150 | BOOL 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 | } |
| 162 | BOOL CompareStringList(PSTRING_LIST listA, PSTRING_LIST listB) |
| 163 | { |
| 164 | if (listA == listB) |
no outgoing calls
no test coverage detected