| 86 | } |
| 87 | |
| 88 | PSTRING_LIST CreateStringList(BOOL ignoreCase) |
| 89 | { |
| 90 | PSTRING_LIST list = NEW(STRING_LIST); |
| 91 | list->Count = 0; |
| 92 | list->Capacity = 16; |
| 93 | list->IgnoreCase = ignoreCase; |
| 94 | list->Values = NEW_ARRAY(LPWSTR, list->Capacity); |
| 95 | return list; |
| 96 | } |
| 97 | VOID LoadStringListFromRegistryKey(PSTRING_LIST list, HKEY key, DWORD maxStringLength) |
| 98 | { |
| 99 | DWORD count; |