VirtualBox

Ignore:
Timestamp:
Oct 3, 2007 8:56:45 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
25030
Message:

implemented LogHistoryCount system property (Main+VBoxManage)

File:
1 edited

Legend:

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

    r5146 r5150  
    529529                 "                            vrdpauthlibrary default|<library> |\n"
    530530                 "                            hwvirtexenabled yes|no\n"
     531                 "                            loghistorycount <value>\n"
    531532                 "\n");
    532533    }
     
    27682769
    27692770        systemProperties->COMGETTER(MinGuestRAM)(&ulValue);
    2770         RTPrintf("Minimum guest RAM size:     %u Megabytes\n", ulValue);
     2771        RTPrintf("Minimum guest RAM size:      %u Megabytes\n", ulValue);
    27712772        systemProperties->COMGETTER(MaxGuestRAM)(&ulValue);
    2772         RTPrintf("Maximum guest RAM size:     %u Megabytes\n", ulValue);
     2773        RTPrintf("Maximum guest RAM size:      %u Megabytes\n", ulValue);
    27732774        systemProperties->COMGETTER(MaxGuestVRAM)(&ulValue);
    2774         RTPrintf("Maximum video RAM size:     %u Megabytes\n", ulValue);
     2775        RTPrintf("Maximum video RAM size:      %u Megabytes\n", ulValue);
    27752776        systemProperties->COMGETTER(MaxVDISize)(&ul64Value);
    2776         RTPrintf("Maximum VDI size:           %lu Megabytes\n", ul64Value);
     2777        RTPrintf("Maximum VDI size:            %lu Megabytes\n", ul64Value);
    27772778        systemProperties->COMGETTER(DefaultVDIFolder)(str.asOutParam());
    2778         RTPrintf("Default VDI filder:         %lS\n", str.raw());
     2779        RTPrintf("Default VDI filder:          %lS\n", str.raw());
    27792780        systemProperties->COMGETTER(DefaultMachineFolder)(str.asOutParam());
    2780         RTPrintf("Default machine folder:     %lS\n", str.raw());
     2781        RTPrintf("Default machine folder:      %lS\n", str.raw());
    27812782        systemProperties->COMGETTER(RemoteDisplayAuthLibrary)(str.asOutParam());
    27822783        RTPrintf("VRDP authentication library: %lS\n", str.raw());
    27832784        systemProperties->COMGETTER(HWVirtExEnabled)(&flag);
    27842785        RTPrintf("Hardware virt. extensions:   %s\n", flag ? "yes" : "no");
     2786        systemProperties->COMGETTER(LogHistoryCount)(&ulValue);
     2787        RTPrintf("Log history count:           %u\n", ulValue);
    27852788
    27862789    }
     
    63406343        /* reset to default? */
    63416344        if (strcmp(argv[1], "default") == 0)
    6342         {
    63436345            CHECK_ERROR(systemProperties, COMSETTER(DefaultVDIFolder)(NULL));
    6344         }
    63456346        else
    6346         {
    63476347            CHECK_ERROR(systemProperties, COMSETTER(DefaultVDIFolder)(Bstr(argv[1])));
    6348         }
    63496348    }
    63506349    else if (strcmp(argv[0], "machinefolder") == 0)
     
    63526351        /* reset to default? */
    63536352        if (strcmp(argv[1], "default") == 0)
    6354         {
    63556353            CHECK_ERROR(systemProperties, COMSETTER(DefaultMachineFolder)(NULL));
    6356         }
    63576354        else
    6358         {
    63596355            CHECK_ERROR(systemProperties, COMSETTER(DefaultMachineFolder)(Bstr(argv[1])));
    6360         }
    63616356    }
    63626357    else if (strcmp(argv[0], "vrdpauthlibrary") == 0)
     
    63646359        /* reset to default? */
    63656360        if (strcmp(argv[1], "default") == 0)
    6366         {
    63676361            CHECK_ERROR(systemProperties, COMSETTER(RemoteDisplayAuthLibrary)(NULL));
    6368         }
    63696362        else
    6370         {
    63716363            CHECK_ERROR(systemProperties, COMSETTER(RemoteDisplayAuthLibrary)(Bstr(argv[1])));
    6372         }
    63736364    }
    63746365    else if (strcmp(argv[0], "hwvirtexenabled") == 0)
     
    63816372            return errorArgument("Invalid value '%s' for hardware virtualization extension flag", argv[1]);
    63826373    }
     6374    else if (strcmp(argv[0], "loghistorycount") == 0)
     6375    {
     6376        uint32_t uVal;
     6377        int vrc;
     6378        vrc = RTStrToUInt32Ex(argv[1], NULL, 0, &uVal);
     6379        if (vrc != VINF_SUCCESS)
     6380            return errorArgument("Error parsing Log history count '%s'", argv[1]);
     6381        CHECK_ERROR(systemProperties, COMSETTER(LogHistoryCount)(uVal));
     6382    }
    63836383    else
    6384     {
    63856384        return errorSyntax(USAGE_SETPROPERTY, "Invalid parameter '%s'", Utf8Str(argv[0]).raw());
    6386     }
    63876385
    63886386    return SUCCEEDED(rc) ? 0 : 1;
Note: See TracChangeset for help on using the changeset viewer.

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