Changeset 72116 in vbox for trunk/include
- Timestamp:
- May 4, 2018 4:39:20 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmserialifs.h
r72083 r72116 62 62 63 63 /** 64 * Notifies the upper device/driver that all data was sent. 65 * 66 * @returns VBox status code. 67 * @param pInterface Pointer to the interface structure containing the called function pointer. 68 */ 69 DECLR3CALLBACKMEMBER(int, pfnDataSentNotify, (PPDMISERIALPORT pInterface)); 70 71 /** 64 72 * Try to read data from the device/driver above for writing. 65 73 * … … 175 183 * @thread Any thread. 176 184 */ 177 DECLR3CALLBACKMEMBER(int, pfnChgParams, (PPDMISERIALCONNECTOR pInterface, uint32_t uBps,178 PDMSERIALPARITY enmParity, unsigned cDataBits,179 PDMSERIALSTOPBITS enmStopBits));185 DECLR3CALLBACKMEMBER(int, pfnChgParams, (PPDMISERIALCONNECTOR pInterface, uint32_t uBps, 186 PDMSERIALPARITY enmParity, unsigned cDataBits, 187 PDMSERIALSTOPBITS enmStopBits)); 180 188 181 189 /** … … 188 196 * @thread Any thread. 189 197 */ 190 DECLR3CALLBACKMEMBER(int, pfnChgModemLines, (PPDMISERIALCONNECTOR pInterface, bool fRts, bool fDtr));198 DECLR3CALLBACKMEMBER(int, pfnChgModemLines, (PPDMISERIALCONNECTOR pInterface, bool fRts, bool fDtr)); 191 199 192 200 /** … … 198 206 * @thread Any thread. 199 207 */ 200 DECLR3CALLBACKMEMBER(int, pfnChgBrk, (PPDMISERIALCONNECTOR pInterface, bool fBrk));208 DECLR3CALLBACKMEMBER(int, pfnChgBrk, (PPDMISERIALCONNECTOR pInterface, bool fBrk)); 201 209 202 210 /**
Note:
See TracChangeset
for help on using the changeset viewer.