| 443 | } |
| 444 | |
| 445 | void ImportsHandling::updateModuleInTreeView(const ImportModuleThunk * importThunk, CTreeItem item) |
| 446 | { |
| 447 | swprintf_s(stringBuffer, L"%s (%d) FThunk: " PRINTF_DWORD_PTR_HALF, importThunk->moduleName,importThunk->thunkList.size(), importThunk->firstThunk); |
| 448 | |
| 449 | item.SetText(stringBuffer); |
| 450 | Icon icon = getAppropiateIcon(importThunk->isValid()); |
| 451 | item.SetImage(icon, icon); |
| 452 | } |
| 453 | |
| 454 | ImportsHandling::Icon ImportsHandling::getAppropiateIcon(const ImportThunk * importThunk) |
| 455 | { |