Alexander Dorofeyev alexd4@inbox.lv writes:
@@ -1148,7 +1201,7 @@ static const IFilterMapper2Vtbl fm2vtbl =
static HRESULT WINAPI FilterMapper_QueryInterface(IFilterMapper * iface, REFIID riid, LPVOID *ppv) {
- FilterMapper2Impl *This = impl_from_IFilterMapper(iface);
- ICOM_THIS_MULTI(FilterMapper2Impl, lpVtblFilterMapper, iface);
Please don't do that. Using inline functions is much better than the ugly and non-typesafe ICOM_THIS_MULTI macro.