VirtualBox

Changeset 6017 in vbox


Ignore:
Timestamp:
Dec 9, 2007 12:23:45 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
26643
Message:

Forgot to submit

Location:
trunk/include/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/pdmasynccompletion.h

    r6000 r6017  
    264264
    265265
    266 #if defined(RT_OS_LINUX) && defined(_AIO_H)
     266#if defined(RT_OS_LINUX) /*&& defined(_AIO_H)*/
    267267/**
    268268 * Creates a completion task for an AIO operation on Linux.
  • trunk/include/VBox/pdmifs.h

    r5999 r6017  
    10901090} PDMIISCSITRANSPORT;
    10911091
     1092/** Status line type. */
     1093typedef uint8_t PDMICHARSTATUSLINES;
     1094/** pointer to a PDMICHARSTATUSLINES type. */
     1095typedef PDMICHARSTATUSLINES *PPDMICHARSTATUSLINES;
     1096 
     1097/** Bit mask definitions for status line type*/
     1098#define PDM_ICHAR_STATUS_LINES_DCD RT_BIT(0)
     1099#define PDM_ICHAR_STATUS_LINES_RI  RT_BIT(1)
     1100#define PDM_ICHAR_STATUS_LINES_DSR RT_BIT(2)
     1101#define PDM_ICHAR_STATUS_LINES_CTS RT_BIT(3)
    10921102
    10931103/** Pointer to a char port interface. */
     
    11091119     */
    11101120    DECLR3CALLBACKMEMBER(int, pfnNotifyRead,(PPDMICHARPORT pInterface, const void *pvBuf, size_t *pcbRead));
     1121
     1122    /**
     1123     * Notify the device/driver when the status lines changed.
     1124     *
     1125     * @returns VBox status code.
     1126     * @param   pInterface      Pointer to the interface structure containing the called function pointer.
     1127     * @param   newStatusLine   New state of the status line pins.
     1128     * @thread  Any thread.
     1129     */
     1130    DECLR3CALLBACKMEMBER(int, pfnNotifyStatusLinesChanged,(PPDMICHARPORT pInterface, PDMICHARSTATUSLINES newStatusLines));
    11111131} PDMICHARPORT;
    11121132
     
    11421162     */
    11431163    DECLR3CALLBACKMEMBER(int, pfnSetParameters,(PPDMICHAR pInterface, unsigned Bps, char chParity, unsigned cDataBits, unsigned cStopBits));
     1164
     1165    /**
     1166     * Set the state of the modem lines.
     1167     *
     1168     * @returns VBox status code.
     1169     * @param   pInterface        Pointer to the interface structure containing the called function pointer.
     1170     * @param   RequestToSend     Set to 1 to make the Request to Send line active otherwise to 0.
     1171     * @param   DataTerminalReady Set to 1 to make the Data Terminal Ready line active otherwise 0.
     1172     * @thread  Any thread.
     1173     */
     1174    DECLR3CALLBACKMEMBER(int, pfnSetModemLines,(PPDMICHAR pInterface, unsigned RequestToSend, unsigned DataTerminalReady));
    11441175
    11451176} PDMICHAR;
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