| 558 | } |
| 559 | |
| 560 | LRESULT CMainFrame::OnScRestore(UINT, INT, HWND) |
| 561 | { |
| 562 | if (m_notifyIconData.cbSize) |
| 563 | { |
| 564 | Shell_NotifyIcon(NIM_DELETE, &m_notifyIconData); |
| 565 | m_notifyIconData.cbSize = 0; |
| 566 | } |
| 567 | ShowWindow(SW_SHOW); |
| 568 | BringWindowToTop(); |
| 569 | return 0; |
| 570 | } |
| 571 | |
| 572 | LRESULT CMainFrame::OnScClose(UINT, INT, HWND) |
| 573 | { |
nothing calls this directly
no outgoing calls
no test coverage detected