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

Function CreateIntegerList

r77api/clist.c:4–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include <Shlwapi.h>
3
4PINTEGER_LIST CreateIntegerList()
5{
6 PINTEGER_LIST list = NEW(INTEGER_LIST);
7 list->Count = 0;
8 list->Capacity = 16;
9 list->Values = NEW_ARRAY(INT, list->Capacity);
10 return list;
11}
12VOID LoadIntegerListFromRegistryKey(PINTEGER_LIST list, HKEY key)
13{
14 DWORD count;

Callers 1

LoadR77ConfigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected