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.
26 STDMETHOD_(ULONG, AddRef)(THIS) PURE;
27 STDMETHOD_(ULONG, Release)(THIS) PURE;
35 #define IConnectionRequestCallback_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
36 #define IConnectionRequestCallback_AddRef(This) (This)->lpVtbl->AddRef(This)
37 #define IConnectionRequestCallback_Release(This) (This)->lpVtbl->Release(This)
38 #define IConnectionRequestCallback_OnComplete(This,hrStatus) (This)->lpVtbl->OnComplete(This,hrStatus)