| 23 | } |
| 24 | |
| 25 | HRESULT STDMETHODCALLTYPE DirectInputDeviceWrapper::QueryInterface(REFIID riid, LPVOID* ppvObj) |
| 26 | { |
| 27 | if (pDeviceA) return pDeviceA->QueryInterface(riid, ppvObj); |
| 28 | return pDeviceW->QueryInterface(riid, ppvObj); |
| 29 | } |
| 30 | |
| 31 | ULONG STDMETHODCALLTYPE DirectInputDeviceWrapper::AddRef(void) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected