VirtualBox

Changeset 63812 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Sep 13, 2016 11:33:55 AM (8 years ago)
Author:
vboxsync
Message:

Storage: Cleanup, let vdIfIoIntFileSetAllocationSize take a progress interface instead of just pfnProgress and pvUser

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vd-ifs-internal.h

    r62476 r63812  
    227227     * @param   fFlags          Flags for controlling the allocation strategy.
    228228     *                          Reserved for future use, MBZ.
     229     * @param   pIfProgress     Progress interface (optional).
     230     * @param   uPercentStart   Progress starting point.
     231     * @param   uPercentSpan    Length of operation in percent.
    229232     */
    230233    DECLR3CALLBACKMEMBER(int, pfnSetAllocationSize, (void *pvUser, PVDIOSTORAGE pStorage,
    231234                                                     uint64_t cbSize, uint32_t fFlags,
    232                                                      PFNVDPROGRESS pfnProgress,
    233                                                      void *pvProgressUser, unsigned uPercentStart,
    234                                                      unsigned uPercentSpan));
     235                                                     PVDINTERFACEPROGRESS pIfProgress,
     236                                                     unsigned uPercentStart, unsigned uPercentSpan));
    235237
    236238    /**
     
    512514DECLINLINE(int) vdIfIoIntFileSetAllocationSize(PVDINTERFACEIOINT pIfIoInt, PVDIOSTORAGE pStorage,
    513515                                               uint64_t cbSize, uint32_t fFlags,
    514                                                PFNVDPROGRESS pfnProgress,
    515                                                void *pvProgressUser, unsigned uPercentStart,
    516                                                unsigned uPercentSpan)
     516                                               PVDINTERFACEPROGRESS pIfProgress,
     517                                               unsigned uPercentStart, unsigned uPercentSpan)
    517518{
    518519    return pIfIoInt->pfnSetAllocationSize(pIfIoInt->Core.pvUser, pStorage, cbSize, fFlags,
    519                                           pfnProgress, pvProgressUser, uPercentStart, uPercentSpan);
     520                                          pIfProgress, uPercentStart, uPercentSpan);
    520521}
    521522
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