[Sphere-axis-commits] CVS: Axis/Scripts Scripts.idl,1.5,1.6 Sphere.cpp,1.5,1.6 Sphere.h,1.5,1.6
Brought to you by:
pesterle
From: Philip E. <pes...@us...> - 2003-07-15 21:45:04
|
Update of /cvsroot/sphere-axis/Axis/Scripts In directory sc8-pr-cvs1:/tmp/cvs-serv13498/Scripts Modified Files: Scripts.idl Sphere.cpp Sphere.h Log Message: no message Index: Scripts.idl =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Scripts/Scripts.idl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Scripts.idl 30 May 2003 20:06:15 -0000 1.5 --- Scripts.idl 15 Jul 2003 21:45:01 -0000 1.6 *************** *** 124,127 **** --- 124,129 ---- [id(73), helpstring("method ExportCategories")] HRESULT ExportCategories([in] BSTR filename); [id(74), helpstring("method InvokeRemoteConsole")] HRESULT InvokeRemoteConsole(void); + [id(75), helpstring("method SetMulPath")] HRESULT SetMulPath([in] BSTR path); + [id(76), helpstring("method SetMulFile")] HRESULT SetMulFile([in] ULONG index, [in] BSTR file); }; Index: Sphere.cpp =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Scripts/Sphere.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Sphere.cpp 30 May 2003 20:06:15 -0000 1.5 --- Sphere.cpp 15 Jul 2003 21:45:01 -0000 1.6 *************** *** 710,711 **** --- 710,729 ---- return S_OK; } + + STDMETHODIMP CSphere::SetMulPath(BSTR path) + { + AFX_MANAGE_STATE(AfxGetStaticModuleState()); + + // TODO: Add your implementation code here + + return S_OK; + } + + STDMETHODIMP CSphere::SetMulFile(ULONG index, BSTR file) + { + AFX_MANAGE_STATE(AfxGetStaticModuleState()); + + // TODO: Add your implementation code here + + return S_OK; + } Index: Sphere.h =================================================================== RCS file: /cvsroot/sphere-axis/Axis/Scripts/Sphere.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Sphere.h 30 May 2003 20:06:15 -0000 1.5 --- Sphere.h 15 Jul 2003 21:45:01 -0000 1.6 *************** *** 152,155 **** --- 152,157 ---- STDMETHOD(ExportCategories)(BSTR filename); STDMETHOD(InvokeRemoteConsole)(void); + STDMETHOD(SetMulPath)(BSTR path); + STDMETHOD(SetMulFile)(ULONG index, BSTR file); }; |