Changeset 41786 in vbox for trunk/include/VBox/dis.h
- Timestamp:
- Jun 16, 2012 7:58:22 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78604
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis.h
r41760 r41786 520 520 521 521 /** Parser callback. 522 * @remark no DECLCALLBACK() here because it's considered to be internal (really, I'm too lazy to update all the functions). */ 523 typedef unsigned FNDISPARSE(RTUINTPTR pu8CodeBlock, PCDISOPCODE pOp, PDISOPPARAM pParam, PDISCPUSTATE pCpu); 522 * @remark no DECLCALLBACK() here because it's considered to be internal and 523 * there is no point in enforcing CDECL. */ 524 typedef size_t FNDISPARSE(size_t offInstr, PCDISOPCODE pOp, PDISOPPARAM pParam, PDISCPUSTATE pCpu); 524 525 /** Pointer to a disassembler parser function. */ 525 526 typedef FNDISPARSE *PFNDISPARSE; … … 657 658 PFNDISREADBYTES pfnReadBytes, void *pvUser, 658 659 PDISCPUSTATE pCpu, uint32_t *pcbInstr); 660 DISDECL(int) DISInstWithPrefetchedBytes(RTUINTPTR uInstrAddr, DISCPUMODE enmCpuMode, uint32_t fFilter, 661 void const *pvPrefetched, size_t cbPretched, 662 PFNDISREADBYTES pfnReadBytes, void *pvUser, 663 PDISCPUSTATE pCpu, uint32_t *pcbInstr); 659 664 660 665 DISDECL(int) DISGetParamSize(PDISCPUSTATE pCpu, PDISOPPARAM pParam);
Note:
See TracChangeset
for help on using the changeset viewer.