| 469 | } |
| 470 | |
| 471 | LRESULT CWindowWnd::SendMessage(UINT uMsg, WPARAM wParam /*= 0*/, LPARAM lParam /*= 0*/) |
| 472 | { |
| 473 | ASSERT(::IsWindow(m_hWnd)); |
| 474 | return ::SendMessage(m_hWnd, uMsg, wParam, lParam); |
| 475 | } |
| 476 | |
| 477 | LRESULT CWindowWnd::PostMessage(UINT uMsg, WPARAM wParam /*= 0*/, LPARAM lParam /*= 0*/) |
| 478 | { |
nothing calls this directly
no outgoing calls
no test coverage detected