VirtualBox

Ignore:
Timestamp:
Feb 28, 2008 6:43:08 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
28520
Message:

Main: Reworked enums to avoid 1) weird duplication of enum name when referring to enum values in cross-platform code; 2) possible clashes on Win32 due to putting identifiers like Paused or Disabled to the global namespace (via C enums). In the new style, enums are used like this: a) USBDeviceState_T v = USBDeviceState_Busy from cross-platform non-Qt code; b) KUSBDeviceState v = KUSBDeviceState_Busy from Qt code; c) USBDeviceState v = USBDeviceState_Busy from plain Win32 and d) PRUInt32 USBDeviceState v = USBDeviceState::Busy from plain XPCOM.

File:
1 edited

Legend:

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

    r6968 r7207  
    178178    {
    179179        USBFilter ()
    180             : mAction (USBDeviceFilterAction_InvalidUSBDeviceFilterAction)
     180            : mAction (USBDeviceFilterAction_Null)
    181181            {}
    182182
     
    913913        RTPrintf("Time offset:     %lld ms\n", timeOffset);
    914914
    915     TriStateBool_T hwVirtExEnabled;
     915    TSBool_T hwVirtExEnabled;
    916916    machine->COMGETTER(HWVirtExEnabled)(&hwVirtExEnabled);
    917     if (hwVirtExEnabled == TriStateBool_TSDefault)
     917    if (hwVirtExEnabled == TSBool_Default)
    918918    {
    919919        BOOL fHWVirtExEnabled;
     
    929929    {
    930930        if (details == VMINFO_MACHINEREADABLE)
    931             RTPrintf("hwvirtex=\"%s\"\n", hwVirtExEnabled == TriStateBool_TSTrue ? "on" : "off");
     931            RTPrintf("hwvirtex=\"%s\"\n", hwVirtExEnabled == TSBool_True ? "on" : "off");
    932932        else
    933             RTPrintf("Hardw. virt.ext: %s\n", hwVirtExEnabled == TriStateBool_TSTrue ? "on" : "off");
     933            RTPrintf("Hardw. virt.ext: %s\n", hwVirtExEnabled == TSBool_True ? "on" : "off");
    934934    }
    935935
     
    10631063    ComPtr<IHardDisk> hardDisk;
    10641064    Bstr filePath;
    1065     rc = machine->GetHardDisk(DiskControllerType_IDE0Controller, 0, hardDisk.asOutParam());
     1065    rc = machine->GetHardDisk(DiskControllerType_IDE0, 0, hardDisk.asOutParam());
    10661066    if (SUCCEEDED(rc) && hardDisk)
    10671067    {
     
    10861086            RTPrintf("hda=\"none\"\n");
    10871087    }
    1088     rc = machine->GetHardDisk(DiskControllerType_IDE0Controller, 1, hardDisk.asOutParam());
     1088    rc = machine->GetHardDisk(DiskControllerType_IDE0, 1, hardDisk.asOutParam());
    10891089    if (SUCCEEDED(rc) && hardDisk)
    10901090    {
     
    11091109            RTPrintf("hdb=\"none\"\n");
    11101110    }
    1111     rc = machine->GetHardDisk(DiskControllerType_IDE1Controller, 1, hardDisk.asOutParam());
     1111    rc = machine->GetHardDisk(DiskControllerType_IDE1, 1, hardDisk.asOutParam());
    11121112    if (SUCCEEDED(rc) && hardDisk)
    11131113    {
     
    12171217                switch (attachment)
    12181218                {
    1219                     case NetworkAttachmentType_NoNetworkAttachment:
     1219                    case NetworkAttachmentType_Null:
    12201220                        if (details == VMINFO_MACHINEREADABLE)
    12211221                            strAttachment = "null";
     
    12231223                            strAttachment = "none";
    12241224                        break;
    1225                     case NetworkAttachmentType_NATNetworkAttachment:
     1225                    case NetworkAttachmentType_NAT:
    12261226                        if (details == VMINFO_MACHINEREADABLE)
    12271227                            strAttachment = "nat";
     
    12291229                            strAttachment = "NAT";
    12301230                        break;
    1231                     case NetworkAttachmentType_HostInterfaceNetworkAttachment:
     1231                    case NetworkAttachmentType_HostInterface:
    12321232                    {
    12331233                        Bstr strHostIfDev;
     
    12421242                        break;
    12431243                    }
    1244                     case NetworkAttachmentType_InternalNetworkAttachment:
     1244                    case NetworkAttachmentType_Internal:
    12451245                    {
    12461246                        Bstr strNetwork;
     
    12751275                nic->COMGETTER(AdapterType)(&NICType);
    12761276                switch (NICType) {
    1277                 case NetworkAdapterType_NetworkAdapterAm79C970A:
     1277                case NetworkAdapterType_Am79C970A:
    12781278                    strNICType = "Am79C970A";
    12791279                    break;
    1280                 case NetworkAdapterType_NetworkAdapterAm79C973:
     1280                case NetworkAdapterType_Am79C973:
    12811281                    strNICType = "Am79C973";
    12821282                    break;
    12831283#ifdef VBOX_WITH_E1000
    1284                 case NetworkAdapterType_NetworkAdapter82540EM:
     1284                case NetworkAdapterType_I82540EM:
    12851285                    strNICType = "82540EM";
    12861286                    break;
     
    13511351                {
    13521352                    default:
    1353                     case PortMode_DisconnectedPort:
     1353                    case PortMode_Disconnected:
    13541354                        if (details == VMINFO_MACHINEREADABLE)
    13551355                            RTPrintf("uartmode%d=\"disconnected\"\n", currentUART + 1);
     
    13571357                            RTPrintf(", disconnected\n");
    13581358                        break;
    1359                     case PortMode_HostPipePort:
     1359                    case PortMode_HostPipe:
    13601360                        if (details == VMINFO_MACHINEREADABLE)
    13611361                            RTPrintf("uartmode%d=\"%s,%lS\"\n", currentUART + 1,
     
    13651365                                     fServer ? "server" : "client", path.raw());
    13661366                        break;
    1367                     case PortMode_HostDevicePort:
     1367                    case PortMode_HostDevice:
    13681368                        if (details == VMINFO_MACHINEREADABLE)
    13691369                            RTPrintf("uartmode%d=\"%lS\"\n", currentUART + 1,
     
    13911391            switch (enmDrvType)
    13921392            {
    1393                 case AudioDriverType_NullAudioDriver:
     1393                case AudioDriverType_Null:
    13941394                    if (details == VMINFO_MACHINEREADABLE)
    13951395                        pszDrv = "null";
     
    13971397                        pszDrv = "Null";
    13981398                    break;
    1399                 case AudioDriverType_WINMMAudioDriver:
     1399                case AudioDriverType_WINMM:
    14001400                    if (details == VMINFO_MACHINEREADABLE)
    14011401                        pszDrv = "winmm";
     
    14031403                        pszDrv = "WINMM";
    14041404                    break;
    1405                 case AudioDriverType_DSOUNDAudioDriver:
     1405                case AudioDriverType_DSOUND:
    14061406                    if (details == VMINFO_MACHINEREADABLE)
    14071407                        pszDrv = "dsound";
     
    14091409                        pszDrv = "DSOUND";
    14101410                    break;
    1411                 case AudioDriverType_OSSAudioDriver:
     1411                case AudioDriverType_OSS:
    14121412                    if (details == VMINFO_MACHINEREADABLE)
    14131413                        pszDrv = "oss";
     
    14151415                        pszDrv = "OSS";
    14161416                    break;
    1417                 case AudioDriverType_ALSAAudioDriver:
     1417                case AudioDriverType_ALSA:
    14181418                    if (details == VMINFO_MACHINEREADABLE)
    14191419                        pszDrv = "alsa";
     
    14211421                        pszDrv = "ALSA";
    14221422                    break;
    1423                 case AudioDriverType_PulseAudioDriver:
     1423                case AudioDriverType_Pulse:
    14241424                    if (details == VMINFO_MACHINEREADABLE)
    14251425                        pszDrv = "pulse";
     
    14271427                        pszDrv = "PulseAudio";
    14281428                    break;
    1429                 case AudioDriverType_CoreAudioDriver:
     1429                case AudioDriverType_Core:
    14301430                    if (details == VMINFO_MACHINEREADABLE)
    14311431                        pszDrv = "coreaudio";
     
    14771477        switch (enmMode)
    14781478        {
    1479             case ClipboardMode_ClipDisabled:
     1479            case ClipboardMode_Disabled:
    14801480                if (details == VMINFO_MACHINEREADABLE)
    14811481                    psz = "disabled";
     
    14831483                    psz = "disabled";
    14841484                break;
    1485             case ClipboardMode_ClipHostToGuest:
     1485            case ClipboardMode_HostToGuest:
    14861486                if (details == VMINFO_MACHINEREADABLE)
    14871487                    psz = "hosttoguest";
     
    14891489                    psz = "HostToGuest";
    14901490                break;
    1491             case ClipboardMode_ClipGuestToHost:
     1491            case ClipboardMode_GuestToHost:
    14921492                if (details == VMINFO_MACHINEREADABLE)
    14931493                    psz = "guesttohost";
     
    14951495                    psz = "GuestToHost";
    14961496                break;
    1497             case ClipboardMode_ClipBidirectional:
     1497            case ClipboardMode_Bidirectional:
    14981498                if (details == VMINFO_MACHINEREADABLE)
    14991499                    psz = "bidirectional";
     
    15481548            switch (vrdpAuthType)
    15491549            {
    1550                 case VRDPAuthType_VRDPAuthNull:
     1550                case VRDPAuthType_Null:
    15511551                    strAuthType = "null";
    15521552                    break;
    1553                 case VRDPAuthType_VRDPAuthExternal:
     1553                case VRDPAuthType_External:
    15541554                    strAuthType = "external";
    15551555                    break;
    1556                 case VRDPAuthType_VRDPAuthGuest:
     1556                case VRDPAuthType_Guest:
    15571557                    strAuthType = "guest";
    15581558                    break;
     
    26852685            RTPrintf("Accessible: %s\n", fAccessible ? "yes" : "no");
    26862686            Bstr machineUUIDs;
    2687             CHECK_ERROR(virtualBox, GetDVDImageUsage(uuid, ResourceUsage_AllUsage, machineUUIDs.asOutParam()));
     2687            CHECK_ERROR(virtualBox, GetDVDImageUsage(uuid, ResourceUsage_All, machineUUIDs.asOutParam()));
    26882688            /** @todo usage */
    26892689            RTPrintf("\n");
     
    27122712            RTPrintf("Accessible: %s\n", fAccessible ? "yes" : "no");
    27132713            Bstr machineUUIDs;
    2714             CHECK_ERROR(virtualBox, GetFloppyImageUsage(uuid, ResourceUsage_AllUsage, machineUUIDs.asOutParam()));
     2714            CHECK_ERROR(virtualBox, GetFloppyImageUsage(uuid, ResourceUsage_All, machineUUIDs.asOutParam()));
    27152715            /** @todo usage */
    27162716            RTPrintf("\n");
     
    27862786            switch (state)
    27872787            {
    2788                 case USBDeviceState_USBDeviceNotSupported:
     2788                case USBDeviceState_NotSupported:
    27892789                    pszState = "Not supported"; break;
    2790                 case USBDeviceState_USBDeviceUnavailable:
     2790                case USBDeviceState_Unavailable:
    27912791                    pszState = "Unavailable"; break;
    2792                 case USBDeviceState_USBDeviceBusy:
     2792                case USBDeviceState_Busy:
    27932793                    pszState = "Busy"; break;
    2794                 case USBDeviceState_USBDeviceAvailable:
     2794                case USBDeviceState_Available:
    27952795                    pszState = "Available"; break;
    2796                 case USBDeviceState_USBDeviceHeld:
     2796                case USBDeviceState_Held:
    27972797                    pszState = "Held"; break;
    2798                 case USBDeviceState_USBDeviceCaptured:
     2798                case USBDeviceState_Captured:
    27992799                    pszState = "Captured"; break;
    28002800                default:
     
    28512851            switch (action)
    28522852            {
    2853                 case USBDeviceFilterAction_USBDeviceFilterIgnore:
     2853                case USBDeviceFilterAction_Ignore:
    28542854                    pszAction = "Ignore";
    28552855                    break;
    2856                 case USBDeviceFilterAction_USBDeviceFilterHold:
     2856                case USBDeviceFilterAction_Hold:
    28572857                    pszAction = "Hold";
    28582858                    break;
     
    31003100                    else if (strcmp(type, "writethrough") == 0)
    31013101                    {
    3102                         CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_WritethroughHardDisk));
     3102                        CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_Writethrough));
    31033103                    }
    31043104
     
    31823182            if (strcmp(type, "normal") == 0)
    31833183            {
    3184                 if (hddType != HardDiskType_NormalHardDisk)
    3185                     CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_NormalHardDisk));
     3184                if (hddType != HardDiskType_Normal)
     3185                    CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_Normal));
    31863186            }
    31873187            else if (strcmp(type, "writethrough") == 0)
    31883188            {
    3189                 if (hddType != HardDiskType_WritethroughHardDisk)
    3190                     CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_WritethroughHardDisk));
     3189                if (hddType != HardDiskType_Writethrough)
     3190                    CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_Writethrough));
    31913191
    31923192            }
    31933193            else if (strcmp(type, "immutable") == 0)
    31943194            {
    3195                 if (hddType != HardDiskType_ImmutableHardDisk)
    3196                     CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_ImmutableHardDisk));
     3195                if (hddType != HardDiskType_Immutable)
     3196                    CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_Immutable));
    31973197            }
    31983198            else
     
    38953895            if (strcmp(argv[i], "none") == 0)
    38963896            {
    3897                 bootDevice[n - 1] = DeviceType_NoDevice;
     3897                bootDevice[n - 1] = DeviceType_Null;
    38983898            }
    38993899            else if (strcmp(argv[i], "floppy") == 0)
    39003900            {
    3901                 bootDevice[n - 1] = DeviceType_FloppyDevice;
     3901                bootDevice[n - 1] = DeviceType_Floppy;
    39023902            }
    39033903            else if (strcmp(argv[i], "dvd") == 0)
    39043904            {
    3905                 bootDevice[n - 1] = DeviceType_DVDDevice;
     3905                bootDevice[n - 1] = DeviceType_DVD;
    39063906            }
    39073907            else if (strcmp(argv[i], "disk") == 0)
    39083908            {
    3909                 bootDevice[n - 1] = DeviceType_HardDiskDevice;
     3909                bootDevice[n - 1] = DeviceType_HardDisk;
    39103910            }
    39113911            else if (strcmp(argv[i], "net") == 0)
    39123912            {
    3913                 bootDevice[n - 1] = DeviceType_NetworkDevice;
     3913                bootDevice[n - 1] = DeviceType_Network;
    39143914            }
    39153915            else
     
    44034403            if (strcmp(hwvirtex, "on") == 0)
    44044404            {
    4405                 CHECK_ERROR(machine, COMSETTER(HWVirtExEnabled)(TriStateBool_TSTrue));
     4405                CHECK_ERROR(machine, COMSETTER(HWVirtExEnabled)(TSBool_True));
    44064406            }
    44074407            else if (strcmp(hwvirtex, "off") == 0)
    44084408            {
    4409                 CHECK_ERROR(machine, COMSETTER(HWVirtExEnabled)(TriStateBool_TSFalse));
     4409                CHECK_ERROR(machine, COMSETTER(HWVirtExEnabled)(TSBool_False));
    44104410            }
    44114411            else if (strcmp(hwvirtex, "default") == 0)
    44124412            {
    4413                 CHECK_ERROR(machine, COMSETTER(HWVirtExEnabled)(TriStateBool_TSDefault));
     4413                CHECK_ERROR(machine, COMSETTER(HWVirtExEnabled)(TSBool_Default));
    44144414            }
    44154415            else
     
    45134513            if (strcmp(hdds[0], "none") == 0)
    45144514            {
    4515                 machine->DetachHardDisk(DiskControllerType_IDE0Controller, 0);
     4515                machine->DetachHardDisk(DiskControllerType_IDE0, 0);
    45164516            }
    45174517            else
     
    45464546                {
    45474547                    hardDisk->COMGETTER(Id)(uuid.asOutParam());
    4548                     CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE0Controller, 0));
     4548                    CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE0, 0));
    45494549                }
    45504550                else
     
    45584558            if (strcmp(hdds[1], "none") == 0)
    45594559            {
    4560                 machine->DetachHardDisk(DiskControllerType_IDE0Controller, 1);
     4560                machine->DetachHardDisk(DiskControllerType_IDE0, 1);
    45614561            }
    45624562            else
     
    45914591                {
    45924592                    hardDisk->COMGETTER(Id)(uuid.asOutParam());
    4593                     CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE0Controller, 1));
     4593                    CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE0, 1));
    45944594                }
    45954595                else
     
    46034603            if (strcmp(hdds[2], "none") == 0)
    46044604            {
    4605                 machine->DetachHardDisk(DiskControllerType_IDE1Controller, 1);
     4605                machine->DetachHardDisk(DiskControllerType_IDE1, 1);
    46064606            }
    46074607            else
     
    46364636                {
    46374637                    hardDisk->COMGETTER(Id)(uuid.asOutParam());
    4638                     CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE1Controller, 1));
     4638                    CHECK_ERROR(machine, AttachHardDisk(uuid, DiskControllerType_IDE1, 1));
    46394639                }
    46404640                else
     
    48094809                else if (strcmp(audio, "null") == 0)
    48104810                {
    4811                     CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_NullAudioDriver));
     4811                    CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_Null));
    48124812                    CHECK_ERROR(audioAdapter, COMSETTER(Enabled)(true));
    48134813                }
     
    48164816                else if (strcmp(audio, "winmm") == 0)
    48174817                {
    4818                     CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_WINMMAudioDriver));
     4818                    CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_WINMM));
    48194819                    CHECK_ERROR(audioAdapter, COMSETTER(Enabled)(true));
    48204820                }
     
    48224822                else if (strcmp(audio, "dsound") == 0)
    48234823                {
    4824                     CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_DSOUNDAudioDriver));
     4824                    CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_DSOUND));
    48254825                    CHECK_ERROR(audioAdapter, COMSETTER(Enabled)(true));
    48264826                }
     
    48294829                else if (strcmp(audio, "oss") == 0)
    48304830                {
    4831                     CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_OSSAudioDriver));
     4831                    CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_OSS));
    48324832                    CHECK_ERROR(audioAdapter, COMSETTER(Enabled)(true));
    48334833                }
     
    48354835                else if (strcmp(audio, "alsa") == 0)
    48364836                {
    4837                     CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_ALSAAudioDriver));
     4837                    CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_ALSA));
    48384838                    CHECK_ERROR(audioAdapter, COMSETTER(Enabled)(true));
    48394839                }
     
    48424842                else if (strcmp(audio, "pulse") == 0)
    48434843                {
    4844                     CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_PulseAudioDriver));
     4844                    CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_Pulse));
    48454845                    CHECK_ERROR(audioAdapter, COMSETTER(Enabled)(true));
    48464846                }
     
    48504850                else if (strcmp(audio, "coreaudio") == 0)
    48514851                {
    4852                     CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_CoreAudioDriver));
     4852                    CHECK_ERROR(audioAdapter, COMSETTER(AudioDriver)(AudioDriverType_Core));
    48534853                    CHECK_ERROR(audioAdapter, COMSETTER(Enabled)(true));
    48544854                }
     
    48854885            if (strcmp(clipboard, "disabled") == 0)
    48864886            {
    4887                 CHECK_ERROR(machine, COMSETTER(ClipboardMode)(ClipboardMode_ClipDisabled));
     4887                CHECK_ERROR(machine, COMSETTER(ClipboardMode)(ClipboardMode_Disabled));
    48884888            }
    48894889            else if (strcmp(clipboard, "hosttoguest") == 0)
    48904890            {
    4891                 CHECK_ERROR(machine, COMSETTER(ClipboardMode)(ClipboardMode_ClipHostToGuest));
     4891                CHECK_ERROR(machine, COMSETTER(ClipboardMode)(ClipboardMode_HostToGuest));
    48924892            }
    48934893            else if (strcmp(clipboard, "guesttohost") == 0)
    48944894            {
    4895                 CHECK_ERROR(machine, COMSETTER(ClipboardMode)(ClipboardMode_ClipGuestToHost));
     4895                CHECK_ERROR(machine, COMSETTER(ClipboardMode)(ClipboardMode_GuestToHost));
    48964896            }
    48974897            else if (strcmp(clipboard, "bidirectional") == 0)
    48984898            {
    4899                 CHECK_ERROR(machine, COMSETTER(ClipboardMode)(ClipboardMode_ClipBidirectional));
     4899                CHECK_ERROR(machine, COMSETTER(ClipboardMode)(ClipboardMode_Bidirectional));
    49004900            }
    49014901            else
     
    49544954                if (strcmp(nictype[n], "Am79C970A") == 0)
    49554955                {
    4956                     CHECK_ERROR_RET(nic, COMSETTER(AdapterType)(NetworkAdapterType_NetworkAdapterAm79C970A), 1);
     4956                    CHECK_ERROR_RET(nic, COMSETTER(AdapterType)(NetworkAdapterType_Am79C970A), 1);
    49574957                }
    49584958                else if (strcmp(nictype[n], "Am79C973") == 0)
    49594959                {
    4960                     CHECK_ERROR_RET(nic, COMSETTER(AdapterType)(NetworkAdapterType_NetworkAdapterAm79C973), 1);
     4960                    CHECK_ERROR_RET(nic, COMSETTER(AdapterType)(NetworkAdapterType_Am79C973), 1);
    49614961                }
    49624962#ifdef VBOX_WITH_E1000
    49634963                else if (strcmp(nictype[n], "82540EM") == 0)
    49644964                {
    4965                     CHECK_ERROR_RET(nic, COMSETTER(AdapterType)(NetworkAdapterType_NetworkAdapter82540EM), 1);
     4965                    CHECK_ERROR_RET(nic, COMSETTER(AdapterType)(NetworkAdapterType_I82540EM), 1);
    49664966                }
    49674967#endif
     
    51355135                if (strcmp(uarts_mode[n], "disconnected") == 0)
    51365136                {
    5137                     CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_DisconnectedPort), 1);
     5137                    CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_Disconnected), 1);
    51385138                }
    51395139                else
     
    51415141                    if (strcmp(uarts_mode[n], "server") == 0)
    51425142                    {
    5143                         CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_HostPipePort), 1);
     5143                        CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_HostPipe), 1);
    51445144                        CHECK_ERROR_RET(uart, COMSETTER(Server) (TRUE), 1);
    51455145                    }
    51465146                    else if (strcmp(uarts_mode[n], "client") == 0)
    51475147                    {
    5148                         CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_HostPipePort), 1);
     5148                        CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_HostPipe), 1);
    51495149                        CHECK_ERROR_RET(uart, COMSETTER(Server) (FALSE), 1);
    51505150                    }
    51515151                    else
    51525152                    {
    5153                         CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_HostDevicePort), 1);
     5153                        CHECK_ERROR_RET(uart, COMSETTER(HostMode) (PortMode_HostDevice), 1);
    51545154                    }
    51555155                    CHECK_ERROR_RET(uart, COMSETTER(Path) (Bstr(uarts_path[n])), 1);
     
    51975197                    if (strcmp(vrdpauthtype, "null") == 0)
    51985198                    {
    5199                         CHECK_ERROR(vrdpServer, COMSETTER(AuthType)(VRDPAuthType_VRDPAuthNull));
     5199                        CHECK_ERROR(vrdpServer, COMSETTER(AuthType)(VRDPAuthType_Null));
    52005200                    }
    52015201                    else if (strcmp(vrdpauthtype, "external") == 0)
    52025202                    {
    5203                         CHECK_ERROR(vrdpServer, COMSETTER(AuthType)(VRDPAuthType_VRDPAuthExternal));
     5203                        CHECK_ERROR(vrdpServer, COMSETTER(AuthType)(VRDPAuthType_External));
    52045204                    }
    52055205                    else if (strcmp(vrdpauthtype, "guest") == 0)
    52065206                    {
    5207                         CHECK_ERROR(vrdpServer, COMSETTER(AuthType)(VRDPAuthType_VRDPAuthGuest));
     5207                        CHECK_ERROR(vrdpServer, COMSETTER(AuthType)(VRDPAuthType_Guest));
    52085208                    }
    52095209                    else
     
    62016201        switch (type)
    62026202        {
    6203             case HardDiskType_NormalHardDisk:
     6203            case HardDiskType_Normal:
    62046204                typeStr = "standard";
    62056205                break;
    6206             case HardDiskType_ImmutableHardDisk:
     6206            case HardDiskType_Immutable:
    62076207                typeStr = "immutable";
    62086208                break;
    6209             case HardDiskType_WritethroughHardDisk:
     6209            case HardDiskType_Writethrough:
    62106210                typeStr = "writethrough";
    62116211                break;
     
    63006300            {
    63016301                if (strcmp(type, "normal") == 0)
    6302                     CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_NormalHardDisk));
     6302                    CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_Normal));
    63036303                else if (strcmp(type, "immutable") == 0)
    6304                     CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_ImmutableHardDisk));
     6304                    CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_Immutable));
    63056305                else if (strcmp(type, "writethrough") == 0)
    6306                     CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_WritethroughHardDisk));
     6306                    CHECK_ERROR(hardDisk, COMSETTER(Type)(HardDiskType_Writethrough));
    63076307            }
    63086308            if (SUCCEEDED(rc))
     
    68786878                    i++;
    68796879                    if (strcmp (argv [i], "ignore") == 0)
    6880                         cmd.mFilter.mAction = USBDeviceFilterAction_USBDeviceFilterIgnore;
     6880                        cmd.mFilter.mAction = USBDeviceFilterAction_Ignore;
    68816881                    else if (strcmp (argv [i], "hold") == 0)
    6882                         cmd.mFilter.mAction = USBDeviceFilterAction_USBDeviceFilterHold;
     6882                        cmd.mFilter.mAction = USBDeviceFilterAction_Hold;
    68836883                    else
    68846884                    {
     
    68996899                    ||
    69006900                       (   cmd.mGlobal
    6901                         && cmd.mFilter.mAction == USBDeviceFilterAction_InvalidUSBDeviceFilterAction
     6901                        && cmd.mFilter.mAction == USBDeviceFilterAction_Null
    69026902                       )
    69036903                    || (   !cmd.mGlobal
     
    69996999                    CHECK_ERROR_BREAK (flt, COMSETTER(MaskedInterfaces) (f.mMaskedInterfaces));
    70007000
    7001                 if (f.mAction != USBDeviceFilterAction_InvalidUSBDeviceFilterAction)
     7001                if (f.mAction != USBDeviceFilterAction_Null)
    70027002                    CHECK_ERROR_BREAK (flt, COMSETTER(Action) (f.mAction));
    70037003
     
    70567056                    CHECK_ERROR_BREAK (flt, COMSETTER(MaskedInterfaces) (f.mMaskedInterfaces));
    70577057
    7058                 if (f.mAction != USBDeviceFilterAction_InvalidUSBDeviceFilterAction)
     7058                if (f.mAction != USBDeviceFilterAction_Null)
    70597059                    CHECK_ERROR_BREAK (flt, COMSETTER(Action) (f.mAction));
    70607060            }
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