Home | History | Annotate | Download | only in include

Lines Matching refs:THIS

2  * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
14 #warning COM interfaces layout in this header has not been verified.
24 STDMETHOD_(ULONG, AddRef)(THIS) PURE;
25 STDMETHOD_(ULONG, Release)(THIS) PURE;
31 STDMETHOD_(HRESULT,AbortAllSnapshotsInProgress)(THIS) PURE;
36 #define IVssAdmin_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
37 #define IVssAdmin_AddRef(This) (This)->lpVtbl->AddRef(This)
38 #define IVssAdmin_Release(This) (This)->lpVtbl->Release(This)
39 #define IVssAdmin_RegisterProvider(This,pProviderId,ClassId,pwszProviderName,eProviderType,pwszProviderVersion,ProviderVersionId) (This)->lpVtbl->RegisterProvider(This,pProviderId,ClassId,pwszProviderName,eProviderType,pwszProviderVersion,ProviderVersionId)
40 #define IVssAdmin_UnregisterProvider(This,ProviderId) (This)->lpVtbl->UnregisterProvider(This,ProviderId)
41 #define IVssAdmin_QueryProviders(This,ppEnum) (This)->lpVtbl->QueryProviders(This,ppEnum)
42 #define IVssAdmin_AbortAllSnapshotsInProgress() (This)->lpVtbl->AbortAllSnapshotsInProgress(This)