VirtualBox

Ignore:
Timestamp:
Dec 9, 2007 9:14:41 PM (17 years ago)
Author:
vboxsync
Message:

Reflect interface change in char driver

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Serial/DrvChar.cpp

    r5999 r6027  
    266266}
    267267
     268/**
     269 * Set the modem lines.
     270 *
     271 * @returns VBox status code
     272 * @param pInterface        Pointer to the interface structure.
     273 * @param RequestToSend     Set to 1 if this control line should be made active.
     274 * @param DataTerminalReady Set to 1 if this control line should be made active.
     275 */
     276static DECLCALLBACK(int) drvCharSetModemLines(PPDMICHAR pInterface, unsigned RequestToSend, unsigned DataTerminalReady)
     277{
     278    /* Nothing to do here. */
     279    return VINF_SUCCESS;
     280}
    268281
    269282/* -=-=-=-=- driver interface -=-=-=-=- */
     
    296309    pData->IChar.pfnWrite                   = drvCharWrite;
    297310    pData->IChar.pfnSetParameters           = drvCharSetParameters;
     311    pData->IChar.pfnSetModemLines           = drvCharSetModemLines;
    298312
    299313    /*
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