Lines Matching refs:pMedium
91 STDMETHODIMP EmbedDocument_Impl::GetData( FORMATETC * pFormatetc, STGMEDIUM * pMedium ) in GetData() argument
96 if ( !pMedium ) in GetData()
113 pMedium->tymed = TYMED_ENHMF; in GetData()
114 pMedium->hEnhMetaFile = hMeta; in GetData()
115 pMedium->pUnkForRelease = NULL; in GetData()
131 pMedium->tymed = TYMED_MFPICT; in GetData()
132 pMedium->hMetaFilePict = hMeta; in GetData()
133 pMedium->pUnkForRelease = NULL; in GetData()
156 pMedium->tymed = TYMED_ISTORAGE; in GetData()
157 pMedium->pstg = pNewStg; in GetData()
158 pMedium->pstg->AddRef(); in GetData()
159 pMedium->pUnkForRelease = ( IUnknown* )pNewStg; in GetData()
168 STDMETHODIMP EmbedDocument_Impl::GetDataHere( FORMATETC * pFormatetc, STGMEDIUM * pMedium ) in GetDataHere() argument
173 if ( !pMedium ) in GetDataHere()
189 if ( !pMedium->pstg ) return STG_E_MEDIUMFULL; in GetDataHere()
191 HRESULT hr = SaveTo_Impl( pMedium->pstg ); in GetDataHere()
194 pMedium->tymed = TYMED_ISTORAGE; in GetDataHere()
195 pMedium->pUnkForRelease = NULL; in GetDataHere()