Changeset 41690 in vbox for trunk/include/VBox/dis.h
- Timestamp:
- Jun 13, 2012 6:12:25 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78497
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis.h
r41678 r41690 442 442 443 443 444 /** Pointer to opcode. */445 typedef struct OPCODE *POPCODE;446 444 /** Pointer to const opcode. */ 447 typedef const struct OPCODE *PCOPCODE;445 typedef const struct DISOPCODE *PCDISOPCODE; 448 446 449 447 /** … … 464 462 /** Parser callback. 465 463 * @remark no DECLCALLBACK() here because it's considered to be internal (really, I'm too lazy to update all the functions). */ 466 typedef unsigned FNDISPARSE(RTUINTPTR pu8CodeBlock, PC OPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);464 typedef unsigned FNDISPARSE(RTUINTPTR pu8CodeBlock, PCDISOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu); 467 465 typedef FNDISPARSE *PFNDISPARSE; 468 466 … … 538 536 539 537 /** Pointer to the current instruction. */ 540 PC OPCODEpCurInstr;538 PCDISOPCODE pCurInstr; 541 539 #ifndef DIS_CORE_ONLY 542 540 /** Opcode format string for current instruction. */ … … 558 556 /** Opcode. */ 559 557 #pragma pack(4) 560 typedef struct OPCODE558 typedef struct DISOPCODE 561 559 { 562 560 #ifndef DIS_CORE_ONLY … … 571 569 uint16_t param3; 572 570 573 u nsignedoptype;574 } OPCODE;571 uint32_t optype; 572 } DISOPCODE; 575 573 #pragma pack() 576 574
Note:
See TracChangeset
for help on using the changeset viewer.