| 683 | } |
| 684 | |
| 685 | STDMETHODIMP CActiveXCtrl::GetExtendedControl(IDispatch** ppDisp) |
| 686 | { |
| 687 | DUITRACE(_T("AX: CActiveXCtrl::GetExtendedControl")); |
| 688 | if( ppDisp == NULL ) return E_POINTER; |
| 689 | if( m_pOwner == NULL ) return E_UNEXPECTED; |
| 690 | if( m_pOwner->m_pUnk == NULL ) return E_UNEXPECTED; |
| 691 | return m_pOwner->m_pUnk->QueryInterface(IID_IDispatch, (LPVOID*) ppDisp); |
| 692 | } |
| 693 | |
| 694 | STDMETHODIMP CActiveXCtrl::TransformCoords(POINTL* pPtlHimetric, POINTF* pPtfContainer, DWORD dwFlags) |
| 695 | { |
nothing calls this directly
no test coverage detected