| 139 | } |
| 140 | } |
| 141 | const WCHAR * DumpMemoryGui::getMemoryStateString(DWORD value) |
| 142 | { |
| 143 | switch(value) |
| 144 | { |
| 145 | case MEM_COMMIT: |
| 146 | return MemoryStateValues[STATE_COMMIT]; |
| 147 | case MEM_FREE: |
| 148 | return MemoryStateValues[STATE_FREE]; |
| 149 | case MEM_RESERVE: |
| 150 | return MemoryStateValues[STATE_RESERVE]; |
| 151 | default: |
| 152 | return MemoryUnknown; |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | WCHAR * DumpMemoryGui::getMemoryProtectionString(DWORD value) |
| 157 | { |
nothing calls this directly
no outgoing calls
no test coverage detected