| 73 | } |
| 74 | |
| 75 | void PickDllGui::addColumnsToModuleList(CListViewCtrl& list) |
| 76 | { |
| 77 | list.SetExtendedListViewStyle(LVS_EX_FULLROWSELECT, LVS_EX_FULLROWSELECT); |
| 78 | |
| 79 | list.InsertColumn(COL_NAME, L"Name", LVCFMT_LEFT); |
| 80 | list.InsertColumn(COL_IMAGEBASE, L"ImageBase", LVCFMT_CENTER); |
| 81 | list.InsertColumn(COL_IMAGESIZE, L"ImageSize", LVCFMT_CENTER); |
| 82 | list.InsertColumn(COL_PATH, L"Path", LVCFMT_LEFT); |
| 83 | } |
| 84 | |
| 85 | void PickDllGui::displayModuleList(CListViewCtrl& list) |
| 86 | { |
nothing calls this directly
no outgoing calls
no test coverage detected