| 371 | } |
| 372 | |
| 373 | int CEtwView::GetImageFromEventName(PCWSTR name) { |
| 374 | if (auto it = s_IconsMap.find(name); it != s_IconsMap.end()) |
| 375 | return it->second; |
| 376 | |
| 377 | auto pos = ::wcschr(name, L'/'); |
| 378 | if (pos) { |
| 379 | if (auto it = s_IconsMap.find(std::wstring(name, pos)); it != s_IconsMap.end()) |
| 380 | return it->second; |
| 381 | } |
| 382 | return 0; |
| 383 | } |
| 384 | |
| 385 | void CEtwView::OnFinalMessage(HWND) { |
| 386 | GetFrame()->ViewDestroyed(this); |