Changeset 47922 in vbox for trunk/src/VBox
- Timestamp:
- Aug 20, 2013 2:36:24 PM (11 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r47873 r47922 2689 2689 <interface 2690 2690 name="IVFSExplorer" extends="$unknown" 2691 uuid=" 003d7f92-d38e-487f-b790-8c5e8631cb2f"2691 uuid="fb220201-2fd3-47e2-a5dc-2c2431d833cc" 2692 2692 wsmap="managed" 2693 2693 > … … 2750 2750 </param> 2751 2751 2752 <param name="sizes" type=" unsignedlong" safearray="yes" dir="out">2752 <param name="sizes" type="long long" safearray="yes" dir="out"> 2753 2753 <desc>The list of sizes (in bytes) for the entries.</desc> 2754 2754 </param> -
trunk/src/VBox/Main/include/VFSExplorerImpl.h
r44529 r47922 56 56 STDMETHOD(CdUp)(IProgress **aProgress); 57 57 58 STDMETHOD(EntryList)(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes), ComSafeArrayOut( ULONG, aSizes), ComSafeArrayOut(ULONG, aModes));58 STDMETHOD(EntryList)(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes), ComSafeArrayOut(LONG64, aSizes), ComSafeArrayOut(ULONG, aModes)); 59 59 60 60 STDMETHOD(Exists)(ComSafeArrayIn(IN_BSTR, aNames), ComSafeArrayOut(BSTR, aExists)); -
trunk/src/VBox/Main/src-server/VFSExplorerImpl.cpp
r44529 r47922 623 623 } 624 624 625 STDMETHODIMP VFSExplorer::EntryList(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes), ComSafeArrayOut( ULONG, aSizes), ComSafeArrayOut(ULONG, aModes))625 STDMETHODIMP VFSExplorer::EntryList(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes), ComSafeArrayOut(LONG64, aSizes), ComSafeArrayOut(ULONG, aModes)) 626 626 { 627 627 if (ComSafeArrayOutIsNull(aNames) || … … 636 636 com::SafeArray<BSTR> sfaNames(m->entryList.size()); 637 637 com::SafeArray<ULONG> sfaTypes(m->entryList.size()); 638 com::SafeArray< ULONG> sfaSizes(m->entryList.size());638 com::SafeArray<LONG64> sfaSizes(m->entryList.size()); 639 639 com::SafeArray<ULONG> sfaModes(m->entryList.size()); 640 640
Note:
See TracChangeset
for help on using the changeset viewer.