| 2289 | } |
| 2290 | |
| 2291 | STDMETHODIMP |
| 2292 | CBasePin::QueryDirection(__out PIN_DIRECTION *pPinDir) |
| 2293 | { |
| 2294 | CheckPointer(pPinDir, E_POINTER); |
| 2295 | ValidateReadWritePtr(pPinDir, sizeof(PIN_DIRECTION)); |
| 2296 | |
| 2297 | *pPinDir = m_dir; |
| 2298 | return NOERROR; |
| 2299 | } |
| 2300 | |
| 2301 | // Default QueryId to return the pin's name |
| 2302 | STDMETHODIMP |
no outgoing calls
no test coverage detected