Changeset 6027 in vbox for trunk/src/VBox/Devices/Serial/DrvChar.cpp
- Timestamp:
- Dec 9, 2007 9:14:41 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvChar.cpp
r5999 r6027 266 266 } 267 267 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 */ 276 static DECLCALLBACK(int) drvCharSetModemLines(PPDMICHAR pInterface, unsigned RequestToSend, unsigned DataTerminalReady) 277 { 278 /* Nothing to do here. */ 279 return VINF_SUCCESS; 280 } 268 281 269 282 /* -=-=-=-=- driver interface -=-=-=-=- */ … … 296 309 pData->IChar.pfnWrite = drvCharWrite; 297 310 pData->IChar.pfnSetParameters = drvCharSetParameters; 311 pData->IChar.pfnSetModemLines = drvCharSetModemLines; 298 312 299 313 /*
Note:
See TracChangeset
for help on using the changeset viewer.