Lines Matching refs:ppdisp
38 STDMETHODIMP CCallback::returnInterface(IDispatch **ppdisp) in returnInterface() argument
40 if( ! ppdisp) in returnInterface()
44 *ppdisp= spDisp; in returnInterface()
45 (*ppdisp)->AddRef(); in returnInterface()
49 STDMETHODIMP CCallback::outInterface(IDispatch **ppdisp) in outInterface() argument
52 if( ! ppdisp) in outInterface()
56 *ppdisp= spDisp; in outInterface()
57 (*ppdisp)->AddRef(); in outInterface()
75 /* [out] */ IDispatch __RPC_FAR *__RPC_FAR *ppdisp, in outValuesAll() argument
97 hr= outInterface( ppdisp); in outValuesAll()
260 STDMETHODIMP CCallback::inoutInterface(IDispatch **ppdisp) in inoutInterface() argument
262 if( !ppdisp) in inoutInterface()
264 CComDispatchDriver disp( *ppdisp); in inoutInterface()
268 (*ppdisp)->Release(); in inoutInterface()
272 *ppdisp= outDisp; in inoutInterface()
273 (*ppdisp)->AddRef(); in inoutInterface()