- Timestamp:
- Sep 28, 2020 4:26:47 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140614
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbg.h
r86327 r86328 1115 1115 * 1116 1116 * @returns nothing. 1117 * @param p DbgcIoPointer to the I/O structure supplied by the I/O provider.1118 */ 1119 DECLCALLBACKMEMBER(void, pfnDestroy, (PCDBGCIO p DbgcIo));1117 * @param pIo Pointer to the I/O structure supplied by the I/O provider. 1118 */ 1119 DECLCALLBACKMEMBER(void, pfnDestroy, (PCDBGCIO pIo)); 1120 1120 1121 1121 /** … … 1125 1125 * @retval true if there is input ready. 1126 1126 * @retval false if there not input ready. 1127 * @param p DbgcIoPointer to the I/O structure supplied by1127 * @param pIo Pointer to the I/O structure supplied by 1128 1128 * the I/O provider. The backend can use this to find it's instance data. 1129 1129 * @param cMillies Number of milliseconds to wait on input data. 1130 1130 */ 1131 DECLCALLBACKMEMBER(bool, pfnInput, (PCDBGCIO p DbgcIo, uint32_t cMillies));1131 DECLCALLBACKMEMBER(bool, pfnInput, (PCDBGCIO pIo, uint32_t cMillies)); 1132 1132 1133 1133 /** … … 1135 1135 * 1136 1136 * @returns VBox status code. 1137 * @param p DbgcIoPointer to the I/O structure supplied by1137 * @param pIo Pointer to the I/O structure supplied by 1138 1138 * the I/O provider. The backend can use this to find it's instance data. 1139 1139 * @param pvBuf Where to put the bytes we read. … … 1143 1143 * successful return. 1144 1144 */ 1145 DECLCALLBACKMEMBER(int, pfnRead, (PCDBGCIO p DbgcIo, void *pvBuf, size_t cbBuf, size_t *pcbRead));1145 DECLCALLBACKMEMBER(int, pfnRead, (PCDBGCIO pIo, void *pvBuf, size_t cbBuf, size_t *pcbRead)); 1146 1146 1147 1147 /** … … 1149 1149 * 1150 1150 * @returns VBox status code. 1151 * @param p DbgcIoPointer to the I/O structure supplied by1151 * @param pIo Pointer to the I/O structure supplied by 1152 1152 * the I/O provider. The backend can use this to find it's instance data. 1153 1153 * @param pvBuf What to write. … … 1156 1156 * If NULL the entire buffer must be successfully written. 1157 1157 */ 1158 DECLCALLBACKMEMBER(int, pfnWrite, (PCDBGCIO p DbgcIo, const void *pvBuf, size_t cbBuf, size_t *pcbWritten));1158 DECLCALLBACKMEMBER(int, pfnWrite, (PCDBGCIO pIo, const void *pvBuf, size_t cbBuf, size_t *pcbWritten)); 1159 1159 1160 1160 /** … … 1162 1162 * 1163 1163 * @returns nothing. 1164 * @param p DbgcIoPointer to the I/O structure supplied by1164 * @param pIo Pointer to the I/O structure supplied by 1165 1165 * the I/O provider. The backend can use this to find it's instance data. 1166 1166 * @param fReady Whether it's ready (true) or busy (false). 1167 1167 */ 1168 DECLCALLBACKMEMBER(void, pfnSetReady, (PCDBGCIO p DbgcIo, bool fReady));1168 DECLCALLBACKMEMBER(void, pfnSetReady, (PCDBGCIO pIo, bool fReady)); 1169 1169 1170 1170 } DBGCIO;
Note:
See TracChangeset
for help on using the changeset viewer.