Changeset 85121 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Jul 8, 2020 7:33:26 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139061
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCGdbRemoteStub.cpp
r84707 r85121 175 175 * @param cbVal Size of the remaining value in bytes. 176 176 */ 177 typedef DECLCALLBACK (int) FNGDBSTUBQPKTPROC(PGDBSTUBCTX pThis, const uint8_t *pbVal, size_t cbVal);177 typedef DECLCALLBACKTYPE(int, FNGDBSTUBQPKTPROC,(PGDBSTUBCTX pThis, const uint8_t *pbVal, size_t cbVal)); 178 178 typedef FNGDBSTUBQPKTPROC *PFNGDBSTUBQPKTPROC; 179 179 … … 227 227 * @param cbVal Size of the value in bytes. 228 228 */ 229 typedef DECLCALLBACK (int) FNGDBSTUBFEATHND(PGDBSTUBCTX pThis, const uint8_t *pbVal, size_t cbVal);229 typedef DECLCALLBACKTYPE(int, FNGDBSTUBFEATHND,(PGDBSTUBCTX pThis, const uint8_t *pbVal, size_t cbVal)); 230 230 typedef FNGDBSTUBFEATHND *PFNGDBSTUBFEATHND; 231 231 -
trunk/src/VBox/Debugger/DBGCInternal.h
r84708 r85121 305 305 * @param pResult Where to store the result. 306 306 */ 307 typedef DECLCALLBACK (int) FNDBGCOPUNARY(PDBGC pDbgc, PCDBGCVAR pArg, DBGCVARCAT enmCat, PDBGCVAR pResult);307 typedef DECLCALLBACKTYPE(int, FNDBGCOPUNARY,(PDBGC pDbgc, PCDBGCVAR pArg, DBGCVARCAT enmCat, PDBGCVAR pResult)); 308 308 /** Pointer to a unary operator handler function. */ 309 309 typedef FNDBGCOPUNARY *PFNDBGCOPUNARY; … … 321 321 * @param pResult Where to store the result. 322 322 */ 323 typedef DECLCALLBACK (int) FNDBGCOPBINARY(PDBGC pDbgc, PCDBGCVAR pArg1, PCDBGCVAR pArg2, PDBGCVAR pResult);323 typedef DECLCALLBACKTYPE(int, FNDBGCOPBINARY,(PDBGC pDbgc, PCDBGCVAR pArg1, PCDBGCVAR pArg2, PDBGCVAR pResult)); 324 324 /** Pointer to a binary operator handler function. */ 325 325 typedef FNDBGCOPBINARY *PFNDBGCOPBINARY; … … 376 376 * @param pResult Where to store the result. 377 377 */ 378 typedef DECLCALLBACK (int) FNDBGCSYMGET(PCDBGCSYM pSymDesc, PDBGCCMDHLP pCmdHlp, DBGCVARTYPE enmType, PDBGCVAR pResult);378 typedef DECLCALLBACKTYPE(int, FNDBGCSYMGET,(PCDBGCSYM pSymDesc, PDBGCCMDHLP pCmdHlp, DBGCVARTYPE enmType, PDBGCVAR pResult)); 379 379 /** Pointer to get function for a builtin symbol. */ 380 380 typedef FNDBGCSYMGET *PFNDBGCSYMGET; … … 390 390 * @param pValue The value to assign the symbol. 391 391 */ 392 typedef DECLCALLBACK (int) FNDBGCSYMSET(PCDBGCSYM pSymDesc, PDBGCCMDHLP pCmdHlp, PCDBGCVAR pValue);392 typedef DECLCALLBACKTYPE(int, FNDBGCSYMSET,(PCDBGCSYM pSymDesc, PDBGCCMDHLP pCmdHlp, PCDBGCVAR pValue)); 393 393 /** Pointer to set function for a builtin symbol. */ 394 394 typedef FNDBGCSYMSET *PFNDBGCSYMSET; … … 540 540 * @param pvUser Opaque user data. 541 541 */ 542 typedef DECLCALLBACK (int) FNDGCSCREENBLIT(const char *psz, void *pvUser);542 typedef DECLCALLBACKTYPE(int, FNDGCSCREENBLIT,(const char *psz, void *pvUser)); 543 543 /** Pointer to a FNDGCSCREENBLIT. */ 544 544 typedef FNDGCSCREENBLIT *PFNDGCSCREENBLIT;
Note:
See TracChangeset
for help on using the changeset viewer.