Changeset 6017 in vbox
- Timestamp:
- Dec 9, 2007 12:23:45 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26643
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmasynccompletion.h
r6000 r6017 264 264 265 265 266 #if defined(RT_OS_LINUX) && defined(_AIO_H)266 #if defined(RT_OS_LINUX) /*&& defined(_AIO_H)*/ 267 267 /** 268 268 * Creates a completion task for an AIO operation on Linux. -
trunk/include/VBox/pdmifs.h
r5999 r6017 1090 1090 } PDMIISCSITRANSPORT; 1091 1091 1092 /** Status line type. */ 1093 typedef uint8_t PDMICHARSTATUSLINES; 1094 /** pointer to a PDMICHARSTATUSLINES type. */ 1095 typedef 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) 1092 1102 1093 1103 /** Pointer to a char port interface. */ … … 1109 1119 */ 1110 1120 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)); 1111 1131 } PDMICHARPORT; 1112 1132 … … 1142 1162 */ 1143 1163 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)); 1144 1175 1145 1176 } PDMICHAR;
Note:
See TracChangeset
for help on using the changeset viewer.