VirtualBox

Ignore:
Timestamp:
Sep 13, 2009 10:17:34 PM (15 years ago)
Author:
vboxsync
Message:

VBoxHDD: Add new parameter to VDGetFormat which takes a list of interfaces. Backends need the async I/O interface if VBOX_WITH_NEW_IO_CODE is enabled to access the file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp

    r22173 r22982  
    510510    /* just try it */
    511511    char *pszFormat = NULL;
    512     int rc = VDGetFormat(argv[0], &pszFormat);
     512    int rc = VDGetFormat(NULL, argv[0], &pszFormat);
    513513    if (RT_FAILURE(rc))
    514514    {
     
    578578    /* just try it */
    579579    char *pszFormat = NULL;
    580     int rc = VDGetFormat(argv[0], &pszFormat);
     580    int rc = VDGetFormat(NULL, argv[0], &pszFormat);
    581581    if (RT_FAILURE(rc))
    582582    {
     
    15191519    {
    15201520        char *pszFormat = NULL;
    1521         vrc = VDGetFormat(Utf8Str(src).raw(), &pszFormat);
     1521        vrc = VDGetFormat(NULL, Utf8Str(src).raw(), &pszFormat);
    15221522        if (RT_FAILURE(vrc))
    15231523        {
     
    16661666        {
    16671667            char *pszFormat = NULL;
    1668             vrc = VDGetFormat(Utf8Str(src).raw(), &pszFormat);
     1668            vrc = VDGetFormat(NULL, Utf8Str(src).raw(), &pszFormat);
    16691669            if (RT_FAILURE(vrc))
    16701670            {
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