VirtualBox

Changeset 4369 in vbox for trunk


Ignore:
Timestamp:
Aug 24, 2007 8:36:45 PM (17 years ago)
Author:
vboxsync
Message:

ULONG = ul

File:
1 edited

Legend:

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

    r4344 r4369  
    59145914        rc = CFGMR3InsertNode(pInst, "Config", &pCfg);                              RC_CHECK();
    59155915
    5916         ULONG uIRQ, uIOBase;
     5916        ULONG ulIRQ, ulIOBase;
    59175917        PortMode_T HostMode;
    59185918        Bstr  path;
    59195919        BOOL  fServer;
    59205920        hrc = serialPort->COMGETTER(HostMode)(&HostMode);                           H();
    5921         hrc = serialPort->COMGETTER(IRQ)(&uIRQ);                                    H();
    5922         hrc = serialPort->COMGETTER(IOBase)(&uIOBase);                              H();
     5921        hrc = serialPort->COMGETTER(IRQ)(&ulIRQ);                                   H();
     5922        hrc = serialPort->COMGETTER(IOBase)(&ulIOBase);                             H();
    59235923        hrc = serialPort->COMGETTER(Path)(path.asOutParam());                       H();
    59245924        hrc = serialPort->COMGETTER(Server)(&fServer);                              H();
    5925         rc = CFGMR3InsertInteger(pCfg,   "IRQ", uIRQ);                              RC_CHECK();
    5926         rc = CFGMR3InsertInteger(pCfg,   "IOBase", uIOBase);                        RC_CHECK();
     5925        rc = CFGMR3InsertInteger(pCfg,   "IRQ", ulIRQ);                             RC_CHECK();
     5926        rc = CFGMR3InsertInteger(pCfg,   "IOBase", ulIOBase);                       RC_CHECK();
    59275927        if (HostMode != PortMode_DisconnectedPort)
    59285928        {
     
    59665966        rc = CFGMR3InsertNode(pInst, "Config", &pCfg);                              RC_CHECK();
    59675967
    5968         ULONG uIRQ, uIOBase;
     5968        ULONG ulIRQ, ulIOBase;
    59695969        Bstr  DevicePath;
    5970         hrc = parallelPort->COMGETTER(IRQ)(&uIRQ);                                  H();
    5971         hrc = parallelPort->COMGETTER(IOBase)(&uIOBase);                            H();
     5970        hrc = parallelPort->COMGETTER(IRQ)(&ulIRQ);                                 H();
     5971        hrc = parallelPort->COMGETTER(IOBase)(&ulIOBase);                           H();
    59725972        hrc = parallelPort->COMGETTER(Path)(DevicePath.asOutParam());               H();
    5973         rc = CFGMR3InsertInteger(pCfg,   "IRQ", uIRQ);                              RC_CHECK();
    5974         rc = CFGMR3InsertInteger(pCfg,   "IOBase", uIOBase);                        RC_CHECK();
     5973        rc = CFGMR3InsertInteger(pCfg,   "IRQ", ulIRQ);                             RC_CHECK();
     5974        rc = CFGMR3InsertInteger(pCfg,   "IOBase", ulIOBase);                       RC_CHECK();
    59755975        rc = CFGMR3InsertNode(pInst,     "LUN#0", &pLunL0);                         RC_CHECK();
    59765976        rc = CFGMR3InsertString(pLunL0,  "Driver", "HostParallel");                 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