Changeset 20801 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Jun 23, 2009 12:10:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r20800 r20801 335 335 * @param pMod Pointer to the module structure. 336 336 * @param iOrdinal The line number ordinal number. 337 * @param pLine 338 */ 339 DECLCALLBACKMEMBER(int, pfnLineByOrdinal)(PRTDBGMODINT pMod, uint32_t iOrdinal, PRTDBGLINE pLine );337 * @param pLineInfo Where to store the information about the line number. 338 */ 339 DECLCALLBACKMEMBER(int, pfnLineByOrdinal)(PRTDBGMODINT pMod, uint32_t iOrdinal, PRTDBGLINE pLineInfo); 340 340 341 341 /** … … 352 352 * @param poffDisp Where to store the distance between the specified address 353 353 * and the returned line number. Optional. 354 * @param pLine Where to store the information about the closest line number. 355 */ 356 DECLCALLBACKMEMBER(int, pfnLineByAddr)(PRTDBGMODINT pMod, uint32_t iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGLINE pLine); 354 * @param pLineInfo Where to store the information about the closest line 355 * number. 356 */ 357 DECLCALLBACKMEMBER(int, pfnLineByAddr)(PRTDBGMODINT pMod, uint32_t iSeg, RTUINTPTR off, PRTINTPTR poffDisp, PRTDBGLINE pLineInfo); 357 358 358 359
Note:
See TracChangeset
for help on using the changeset viewer.