| 39 | } |
| 40 | |
| 41 | static 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 | |
| 54 | static VOID PrintMemoryBasicInformation(PMEMORY_BASIC_INFORMATION MemBasicInfo) |
| 55 | { |
nothing calls this directly
no outgoing calls
no test coverage detected