| 40 | } |
| 41 | |
| 42 | static int ramdump_module_redraw(WINDOW *win) |
| 43 | { |
| 44 | print_module_title(win, "RAM Dump"); |
| 45 | dump_ram(win, cursor * 256, 2, 2); |
| 46 | |
| 47 | return 0; |
| 48 | } |
| 49 | |
| 50 | static int ramdump_module_handle(int key) |
| 51 | { |
nothing calls this directly
no test coverage detected