VirtualBox

Changeset 4270 in vbox


Ignore:
Timestamp:
Aug 21, 2007 10:12:04 PM (17 years ago)
Author:
vboxsync
Message:

win64 fix

File:
1 edited

Legend:

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

    r4269 r4270  
    58675867        rc = CFGMR3InsertNode(pInst, "Config", &pCfg);                              RC_CHECK();
    58685868
    5869         ULONG uIRQ, uIOBase, uHostMode;
     5869        ULONG uIRQ, uIOBase;
     5870        SerialHostMode_T HostMode;
    58705871        Bstr  path;
    58715872        BOOL  fServer;
    5872         hrc = serialPort->COMGETTER(HostMode)(&uHostMode);                          H();
     5873        hrc = serialPort->COMGETTER(HostMode)(&HostMode);                           H();
    58735874        hrc = serialPort->COMGETTER(IRQ)(&uIRQ);                                    H();
    58745875        hrc = serialPort->COMGETTER(IOBase)(&uIOBase);                              H();
     
    58775878        rc = CFGMR3InsertInteger(pCfg,   "IRQ", uIRQ);                              RC_CHECK();
    58785879        rc = CFGMR3InsertInteger(pCfg,   "IOBase", uIOBase);                        RC_CHECK();
    5879         if (uHostMode != SerialHostMode_Disconnected)
     5880        if (HostMode != SerialHostMode_Disconnected)
    58805881        {
    58815882            rc = CFGMR3InsertNode(pInst,     "LUN#0", &pLunL0);                     RC_CHECK();
    5882             if (uHostMode == SerialHostMode_HostPipe)
     5883            if (HostMode == SerialHostMode_HostPipe)
    58835884            {
    58845885                rc = CFGMR3InsertString(pLunL0,  "Driver", "Char");                 RC_CHECK();
     
    58895890                rc = CFGMR3InsertInteger(pLunL2, "IsServer", fServer);              RC_CHECK();
    58905891            }
    5891             else if (uHostMode == SerialHostMode_HostDevice)
     5892            else if (HostMode == SerialHostMode_HostDevice)
    58925893            {
    58935894                rc = CFGMR3InsertString(pLunL0,  "Driver", "Host Serial");          RC_CHECK();
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