| 1120 | } |
| 1121 | |
| 1122 | STDMETHODIMP CMpcVideoRenderer::put_MessageDrain(OAHWND Drain) |
| 1123 | { |
| 1124 | if (m_pInputPin == nullptr || m_pInputPin->IsConnected() == FALSE) { |
| 1125 | return VFW_E_NOT_CONNECTED; |
| 1126 | } |
| 1127 | m_hWndDrain = (HWND)Drain; |
| 1128 | return S_OK; |
| 1129 | } |
| 1130 | |
| 1131 | STDMETHODIMP CMpcVideoRenderer::get_MessageDrain(OAHWND* Drain) |
| 1132 | { |
nothing calls this directly
no outgoing calls
no test coverage detected