Changeset 20963 in vbox
- Timestamp:
- Jun 26, 2009 9:35:27 AM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
-
VFSExplorerImpl.cpp (modified) (1 diff)
-
idl/VirtualBox.xidl (modified) (4 diffs)
-
include/VFSExplorerImpl.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/VFSExplorerImpl.cpp
r20206 r20963 556 556 } 557 557 558 STDMETHODIMP VFSExplorer::Cd(IN_BSTR aDir, IProgress **aProgress) 559 { 560 CheckComArgNotNull(aDir); 561 CheckComArgOutPointerValid(aProgress); 562 563 return E_NOTIMPL; 564 } 565 566 STDMETHODIMP VFSExplorer::CdUp(IProgress **aProgress) 567 { 568 CheckComArgOutPointerValid(aProgress); 569 570 return E_NOTIMPL; 571 } 572 558 573 STDMETHODIMP VFSExplorer::EntryList(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes)) 559 574 { -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r20945 r20963 2957 2957 <interface 2958 2958 name="IVFSExplorer" extends="$unknown" 2959 uuid=" fd7da337-80ef-4a5c-9122-918435e33003"2959 uuid="2bb864a1-02a3-4474-a1d4-fb5f23b742e1" 2960 2960 wsmap="managed" 2961 2961 > … … 2985 2985 </method> 2986 2986 2987 <method name="cd"> 2988 <desc>Change the current directory level.</desc> 2989 2990 <param name="aDir" type="wstring" dir="in"> 2991 <desc>The name of the directory to go in.</desc> 2992 </param> 2993 2994 <param name="aProgress" type="IProgress" dir="return"> 2995 <desc>Progress object to track the operation completion.</desc> 2996 </param> 2997 </method> 2998 2999 <method name="cdUp"> 3000 <desc>Go one directory upwards from the current directory level.</desc> 3001 3002 <param name="aProgress" type="IProgress" dir="return"> 3003 <desc>Progress object to track the operation completion.</desc> 3004 </param> 3005 </method> 3006 2987 3007 <method name="entryList"> 2988 3008 <desc>Returns a list of files/directories after a call to <link … … 3000 3020 3001 3021 <method name="exists"> 3002 <desc>Checks if the given file list exists in the current directory3003 level.</desc>3022 <desc>Checks if the given file list exists in the current directory 3023 level.</desc> 3004 3024 3005 3025 <param name="aNames" type="wstring" safearray="yes" dir="in"> … … 3013 3033 3014 3034 <method name="remove"> 3015 <desc>Deletes the given files in the current directory level.</desc>3035 <desc>Deletes the given files in the current directory level.</desc> 3016 3036 3017 3037 <param name="aNames" type="wstring" safearray="yes" dir="in"> -
trunk/src/VBox/Main/include/VFSExplorerImpl.h
r20081 r20963 68 68 STDMETHOD(Update)(IProgress **aProgress); 69 69 70 STDMETHOD(Cd)(IN_BSTR aDir, IProgress **aProgress); 71 STDMETHOD(CdUp)(IProgress **aProgress); 72 70 73 STDMETHOD(EntryList)(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes)); 71 74 … … 73 76 74 77 STDMETHOD(Remove)(ComSafeArrayIn(IN_BSTR, aNames), IProgress **aProgress); 75 76 /* todo: later77 STDMETHOD(Cd)(IN_BSTR aDir, IProgress **aProgress);78 STDMETHOD(CdUp)(IProgress **aProgress);79 80 STDMETHOD(MkDir)(IN_BSTR aDir, IProgress **aProgress);81 STDMETHOD(RmDir)(IN_BSTR aDir, IProgress **aProgress);82 */83 78 84 79 private:
Note:
See TracChangeset
for help on using the changeset viewer.

