Implement IUnkown
| 2064 | |
| 2065 | /// Implement IUnkown |
| 2066 | STDMETHODIMP DataObject_QueryInterface ( DataObject *pd, REFIID riid, PVOID *ppv ) |
| 2067 | { |
| 2068 | //Platform::DebugPrintf("DO QI %x\n", pd); |
| 2069 | return pd->sci->QueryInterface ( riid, ppv ); |
| 2070 | } |
| 2071 | STDMETHODIMP_ ( ULONG ) DataObject_AddRef ( DataObject *pd ) |
| 2072 | { |
| 2073 | return pd->sci->AddRef(); |
nothing calls this directly
no test coverage detected