| 125 | } |
| 126 | |
| 127 | const WCHAR * DumpMemoryGui::getMemoryTypeString(DWORD value) |
| 128 | { |
| 129 | switch(value) |
| 130 | { |
| 131 | case MEM_IMAGE: |
| 132 | return MemoryTypeValues[TYPE_IMAGE]; |
| 133 | case MEM_MAPPED: |
| 134 | return MemoryTypeValues[TYPE_MAPPED]; |
| 135 | case MEM_PRIVATE: |
| 136 | return MemoryTypeValues[TYPE_PRIVATE]; |
| 137 | default: |
| 138 | return MemoryUnknown; |
| 139 | } |
| 140 | } |
| 141 | const WCHAR * DumpMemoryGui::getMemoryStateString(DWORD value) |
| 142 | { |
| 143 | switch(value) |
nothing calls this directly
no outgoing calls
no test coverage detected