VirtualBox

Ignore:
Timestamp:
Dec 21, 2010 8:49:53 PM (14 years ago)
Author:
vboxsync
Message:

introduced VBOX_WITH_S3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ApplianceImpl.cpp

    r33698 r35284  
    932932                taskrc = pAppliance->readFS(task.get());
    933933            else if (task->locInfo.storageType == VFSType_S3)
     934#ifdef VBOX_WITH_S3
    934935                taskrc = pAppliance->readS3(task.get());
     936#else
     937                taskrc = VERR_NOT_IMPLEMENTED;
     938#endif
    935939        break;
    936940
     
    939943                taskrc = pAppliance->importFS(task.get());
    940944            else if (task->locInfo.storageType == VFSType_S3)
     945#ifdef VBOX_WITH_S3
    941946                taskrc = pAppliance->importS3(task.get());
     947#else
     948                taskrc = VERR_NOT_IMPLEMENTED;
     949#endif
    942950        break;
    943951
     
    946954                taskrc = pAppliance->writeFS(task.get());
    947955            else if (task->locInfo.storageType == VFSType_S3)
     956#ifdef VBOX_WITH_S3
    948957                taskrc = pAppliance->writeS3(task.get());
     958#else
     959                taskrc = VERR_NOT_IMPLEMENTED;
     960#endif
    949961        break;
    950962    }
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