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

Function IntegerListContains

r77api/clist.c:54–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 list->Values[list->Count++] = value;
53}
54BOOL IntegerListContains(PINTEGER_LIST list, INT value)
55{
56 for (DWORD i = 0; i < list->Count; i++)
57 {
58 if (list->Values[i] == value) return TRUE;
59 }
60
61 return FALSE;
62}
63BOOL CompareIntegerList(PINTEGER_LIST listA, PINTEGER_LIST listB)
64{
65 if (listA == listB)

Callers 6

IsProcessIdHiddenFunction · 0.85
IsTcpLocalPortHiddenFunction · 0.85
IsTcpRemotePortHiddenFunction · 0.85
IsUdpPortHiddenFunction · 0.85
GetProcessListFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected