| 22 | }; |
| 23 | |
| 24 | static |
| 25 | VOID |
| 26 | PrintCodeIntegrityOptions( |
| 27 | _In_ ULONG CodeIntegrityOptions |
| 28 | ) |
| 29 | { |
| 30 | for (ULONG i = 0; i < ARRAYSIZE(CodeIntegrityOptionNames); ++i) |
| 31 | { |
| 32 | const ULONG Value = 1UL << i; |
| 33 | if ((CodeIntegrityOptions & Value) != 0) |
| 34 | { |
| 35 | Printf(L"\t 0x%04lX: %ls\n", Value, CodeIntegrityOptionNames[i]); |
| 36 | } |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | NTSTATUS |
| 41 | DumpSystemInformation( |
no test coverage detected