Changeset 22112 in vbox for trunk/include
- Timestamp:
- Aug 9, 2009 8:14:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbgf.h
r22106 r22112 119 119 120 120 VMMR3DECL(int) DBGFR3AddrFromSelOff(PVM pVM, VMCPUID idCpu, PDBGFADDRESS pAddress, RTSEL Sel, RTUINTPTR off); 121 VMMR3DECL(int) DBGFR3AddrFromSelInfoOff(PVM pVM, PDBGFADDRESS pAddress, PCDBGFSELINFO pSelInfo, RTUINTPTR off); 121 122 VMMR3DECL(PDBGFADDRESS) DBGFR3AddrFromFlat(PVM pVM, PDBGFADDRESS pAddress, RTGCUINTPTR FlatPtr); 122 123 VMMR3DECL(PDBGFADDRESS) DBGFR3AddrFromPhys(PVM pVM, PDBGFADDRESS pAddress, RTGCPHYS PhysAddr); … … 639 640 640 641 VMMR3DECL(int) DBGFR3AsSymbolByAddr(PVM pVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, PRTGCINTPTR poffDisp, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod); 642 VMMR3DECL(PRTDBGSYMBOL) DBGFR3AsSymbolByAddrA(PVM pVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, PRTGCINTPTR poffDisp, PRTDBGMOD phMod); 641 643 VMMR3DECL(int) DBGFR3AsSymbolByName(PVM pVM, RTDBGAS hDbgAs, const char *pszSymbol, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod); 642 644 … … 648 650 VMMR3DECL(int) DBGFR3SymbolByAddr(PVM pVM, RTGCUINTPTR Address, PRTGCINTPTR poffDisplacement, PDBGFSYMBOL pSymbol); 649 651 VMMR3DECL(int) DBGFR3SymbolByName(PVM pVM, const char *pszSymbol, PDBGFSYMBOL pSymbol); 650 VMMR3DECL(PDBGFSYMBOL) DBGFR3SymbolByAddrAlloc(PVM pVM, RTGCUINTPTR Address, PRTGCINTPTR poffDisplacement); 651 VMMR3DECL(PDBGFSYMBOL) DBGFR3SymbolByNameAlloc(PVM pVM, const char *pszSymbol); 652 VMMR3DECL(void) DBGFR3SymbolFree(PDBGFSYMBOL pSymbol); 652 653 653 VMMR3DECL(int) DBGFR3LineByAddr(PVM pVM, RTGCUINTPTR Address, PRTGCINTPTR poffDisplacement, PDBGFLINE pLine); 654 654 VMMR3DECL(PDBGFLINE) DBGFR3LineByAddrAlloc(PVM pVM, RTGCUINTPTR Address, PRTGCINTPTR poffDisplacement); … … 741 741 DBGFADDRESS AddrPC; 742 742 /** Pointer to the symbol nearest the program counter (PC). NULL if not found. */ 743 P DBGFSYMBOLpSymPC;743 PRTDBGSYMBOL pSymPC; 744 744 /** Pointer to the linnumber nearest the program counter (PC). NULL if not found. */ 745 745 PDBGFLINE pLinePC; … … 758 758 DBGFADDRESS AddrReturnPC; 759 759 /** Pointer to the symbol nearest the return PC. NULL if not found. */ 760 P DBGFSYMBOLpSymReturnPC;760 PRTDBGSYMBOL pSymReturnPC; 761 761 /** Pointer to the linnumber nearest the return PC. NULL if not found. */ 762 762 PDBGFLINE pLineReturnPC;
Note:
See TracChangeset
for help on using the changeset viewer.