Changeset 84629 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Jun 1, 2020 8:32:44 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCGdbRemoteStub.cpp
r84628 r84629 140 140 * @returns Status code. 141 141 * @param pThis The GDB stub context. 142 * @param pb Args Pointer to the arguments.143 * @param cb Args Size of the argumentsin bytes.144 */ 145 typedef DECLCALLBACK(int) FNGDBSTUBQPKTPROC(PGDBSTUBCTX pThis, const uint8_t *pb Args, size_t cbArgs);142 * @param pbVal Pointer to the remaining value. 143 * @param cbVal Size of the remaining value in bytes. 144 */ 145 typedef DECLCALLBACK(int) FNGDBSTUBQPKTPROC(PGDBSTUBCTX pThis, const uint8_t *pbVal, size_t cbVal); 146 146 typedef FNGDBSTUBQPKTPROC *PFNGDBSTUBQPKTPROC; 147 147 … … 368 368 * @param pbBuf The buffer containing the hexstring to convert. 369 369 * @param cbBuf Size of the buffer in bytes. 370 * @param pvDst Where to store the decoded data. 371 * @param cbDst Maximum buffer sizein bytes. 370 * @param puVal Where to store the decoded integer. 372 371 * @param chSep The character to stop conversion at. 373 372 * @param ppbSep Where to store the pointer in the buffer where the separator was found, optional.
Note:
See TracChangeset
for help on using the changeset viewer.