From: <ad...@us...> - 2003-02-21 11:46:37
|
Update of /cvsroot/bdadev/TuneReqStore In directory sc8-pr-cvs1:/tmp/cvs-serv25776 Modified Files: TuneReqStore.idl TuneRequestStore.cpp TuneRequestStore.h Log Message: Changed Attach and Detach function names Index: TuneReqStore.idl =================================================================== RCS file: /cvsroot/bdadev/TuneReqStore/TuneReqStore.idl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TuneReqStore.idl 20 Feb 2003 17:39:38 -0000 1.4 --- TuneReqStore.idl 21 Feb 2003 11:46:34 -0000 1.5 *************** *** 107,112 **** [id(2), helpstring("method Load")] HRESULT Load([in] BSTR FileName); [id(3), helpstring("method Save")] HRESULT Save([in] BSTR FileName); ! [id(4), helpstring("method AttachTIF")] HRESULT AttachTIF([in] IFilterGraph* pFilterGraph); ! [id(5), helpstring("method DetachTIF")] HRESULT DetachTIF(); }; --- 107,112 ---- [id(2), helpstring("method Load")] HRESULT Load([in] BSTR FileName); [id(3), helpstring("method Save")] HRESULT Save([in] BSTR FileName); ! [id(4), helpstring("method AttachToTIF")] HRESULT AttachToTIF([in] IFilterGraph* pFilterGraph); ! [id(5), helpstring("method DetachFromTIF")] HRESULT DetachFromTIF(); }; *************** *** 152,155 **** --- 152,158 ---- // // $Log$ + // Revision 1.5 2003/02/21 11:46:34 adcockj + // Changed Attach and Detach function names + // // Revision 1.4 2003/02/20 17:39:38 adcockj // Interim Check in of Schedule storage Index: TuneRequestStore.cpp =================================================================== RCS file: /cvsroot/bdadev/TuneReqStore/TuneRequestStore.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TuneRequestStore.cpp 21 Feb 2003 07:55:12 -0000 1.7 --- TuneRequestStore.cpp 21 Feb 2003 11:46:34 -0000 1.8 *************** *** 598,606 **** } ! STDMETHODIMP CTuneRequestStore::AttachTIF(IFilterGraph* pFilterGraph) { if(m_ConnectionPoint != NULL) { ! DetachTIF(); } --- 598,606 ---- } ! STDMETHODIMP CTuneRequestStore::AttachToTIF(IFilterGraph* pFilterGraph) { if(m_ConnectionPoint != NULL) { ! DetachFromTIF(); } *************** *** 648,652 **** } ! STDMETHODIMP CTuneRequestStore::DetachTIF() { // unadvise GuideDataEvent object --- 648,652 ---- } ! STDMETHODIMP CTuneRequestStore::DetachFromTIF() { // unadvise GuideDataEvent object *************** *** 821,824 **** --- 821,827 ---- // // $Log$ + // Revision 1.8 2003/02/21 11:46:34 adcockj + // Changed Attach and Detach function names + // // Revision 1.7 2003/02/21 07:55:12 adcockj // Fixes for loading saved xml Index: TuneRequestStore.h =================================================================== RCS file: /cvsroot/bdadev/TuneReqStore/TuneRequestStore.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TuneRequestStore.h 21 Feb 2003 07:55:12 -0000 1.6 --- TuneRequestStore.h 21 Feb 2003 11:46:34 -0000 1.7 *************** *** 51,56 **** public: ! STDMETHOD(DetachTIF)(); ! STDMETHOD(AttachTIF)(/*[in]*/ IFilterGraph* pFilterGraph); // ITuneRequestStore STDMETHOD(get__NewEnum)(/*[out, retval]*/ IEnumTuneInfo** ppUnk); --- 51,56 ---- public: ! STDMETHOD(DetachFromTIF)(); ! STDMETHOD(AttachToTIF)(/*[in]*/ IFilterGraph* pFilterGraph); // ITuneRequestStore STDMETHOD(get__NewEnum)(/*[out, retval]*/ IEnumTuneInfo** ppUnk); |