| 249 | return 0; |
| 250 | } |
| 251 | LRESULT DumpMemoryGui::OnListMemoryClick(NMHDR* pnmh) |
| 252 | { |
| 253 | int index = ListMemorySelect.GetSelectionMark(); |
| 254 | if (index != -1) |
| 255 | { |
| 256 | selectedMemory = (Memory *)ListMemorySelect.GetItemData(index); |
| 257 | if (selectedMemory) |
| 258 | { |
| 259 | updateAddressAndSize(selectedMemory); |
| 260 | } |
| 261 | |
| 262 | } |
| 263 | return 0; |
| 264 | } |
| 265 | void DumpMemoryGui::OnOK(UINT uNotifyCode, int nID, CWindow wndCtl) |
| 266 | { |
| 267 | DoDataExchange(DDX_SAVE); |
nothing calls this directly
no outgoing calls
no test coverage detected