| 475 | } |
| 476 | |
| 477 | LRESULT CWindowWnd::PostMessage(UINT uMsg, WPARAM wParam /*= 0*/, LPARAM lParam /*= 0*/) |
| 478 | { |
| 479 | ASSERT(::IsWindow(m_hWnd)); |
| 480 | return ::PostMessage(m_hWnd, uMsg, wParam, lParam); |
| 481 | } |
| 482 | |
| 483 | void CWindowWnd::ResizeClient(int cx /*= -1*/, int cy /*= -1*/) |
| 484 | { |
nothing calls this directly
no outgoing calls
no test coverage detected