VirtualBox

Changeset 47922 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 20, 2013 2:36:24 PM (11 years ago)
Author:
vboxsync
Message:

Main: IVFSExplorer use LONG64 for file sizes.

Location:
trunk/src/VBox/Main
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r47873 r47922  
    26892689  <interface
    26902690    name="IVFSExplorer" extends="$unknown"
    2691     uuid="003d7f92-d38e-487f-b790-8c5e8631cb2f"
     2691    uuid="fb220201-2fd3-47e2-a5dc-2c2431d833cc"
    26922692    wsmap="managed"
    26932693    >
     
    27502750      </param>
    27512751
    2752       <param name="sizes" type="unsigned long" safearray="yes" dir="out">
     2752      <param name="sizes" type="long long" safearray="yes" dir="out">
    27532753        <desc>The list of sizes (in bytes) for the entries.</desc>
    27542754      </param>
  • trunk/src/VBox/Main/include/VFSExplorerImpl.h

    r44529 r47922  
    5656    STDMETHOD(CdUp)(IProgress **aProgress);
    5757
    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));
    5959
    6060    STDMETHOD(Exists)(ComSafeArrayIn(IN_BSTR, aNames), ComSafeArrayOut(BSTR, aExists));
  • trunk/src/VBox/Main/src-server/VFSExplorerImpl.cpp

    r44529 r47922  
    623623}
    624624
    625 STDMETHODIMP VFSExplorer::EntryList(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes), ComSafeArrayOut(ULONG, aSizes), ComSafeArrayOut(ULONG, aModes))
     625STDMETHODIMP VFSExplorer::EntryList(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes), ComSafeArrayOut(LONG64, aSizes), ComSafeArrayOut(ULONG, aModes))
    626626{
    627627    if (ComSafeArrayOutIsNull(aNames) ||
     
    636636    com::SafeArray<BSTR> sfaNames(m->entryList.size());
    637637    com::SafeArray<ULONG> sfaTypes(m->entryList.size());
    638     com::SafeArray<ULONG> sfaSizes(m->entryList.size());
     638    com::SafeArray<LONG64> sfaSizes(m->entryList.size());
    639639    com::SafeArray<ULONG> sfaModes(m->entryList.size());
    640640
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette