Implement IUnknown
| 2019 | |
| 2020 | /// Implement IUnknown |
| 2021 | STDMETHODIMP DropSource_QueryInterface ( DropSource *ds, REFIID riid, PVOID *ppv ) |
| 2022 | { |
| 2023 | return ds->sci->QueryInterface ( riid, ppv ); |
| 2024 | } |
| 2025 | STDMETHODIMP_ ( ULONG ) DropSource_AddRef ( DropSource *ds ) |
| 2026 | { |
| 2027 | return ds->sci->AddRef(); |
nothing calls this directly
no test coverage detected