MCPcopy Create free account
hub / github.com/NoMercy-ac/NoMercy / PrintBitmap

Function PrintBitmap

Source/Client/NM_Engine/IPssScanner.cpp:41–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39}
40
41static VOID PrintBitmap(ULONG Value, PCKEY_VALUE_PAIR Dictionary)
42{
43 int i;
44
45 for (i = 0; Dictionary[i].Value; ++i) {
46 if ((Value & Dictionary[i].Value) == Dictionary[i].Value) {
47 wprintf(L" %08X %s\n", Dictionary[i].Value, Dictionary[i].String);
48 }
49 }
50
51 return;
52}
53
54static VOID PrintMemoryBasicInformation(PMEMORY_BASIC_INFORMATION MemBasicInfo)
55{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected