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

Function CreateStringList

r77api/clist.c:88–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88PSTRING_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}
97VOID LoadStringListFromRegistryKey(PSTRING_LIST list, HKEY key, DWORD maxStringLength)
98{
99 DWORD count;

Callers 1

LoadR77ConfigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected