HRESULT SetData(
  FORMATETC * pFormatetc,  //Pointer to the FORMATETC structure
  STGMEDIUM * pmedium,     //Pointer to STGMEDIUM structure
  BOOL fRelease            //Indicates which object owns the storage 
                           // medium after the call is completed
下面这句怎么翻译:
fRelease 
[in] If TRUE, the data object called, which implements IDataObject::SetData, owns the storage medium after the call returns. This means it must free the medium after it has been used by calling the ReleaseStgMedium function. If FALSE, the caller retains ownership of the storage medium and the data object called uses the storage medium for the duration of the call only.