| 166 | } |
| 167 | |
| 168 | LRESULT CProcessPropertiesDlg::OnExploreDirectory(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { |
| 169 | if ((INT_PTR)::ShellExecute(nullptr, L"explore", m_px.GetCurDirectory().c_str(), |
| 170 | nullptr, nullptr, SW_SHOWDEFAULT) < 32) |
| 171 | AtlMessageBox(*this, L"Failed to locate directory", IDS_TITLE, MB_ICONERROR); |
| 172 | |
| 173 | return 0; |
| 174 | } |
| 175 | |
| 176 | LRESULT CProcessPropertiesDlg::OnCopy(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { |
| 177 | auto& cmd = m_px.GetCommandLine(); |
nothing calls this directly
no test coverage detected