Changeset 3571 for trunk/kStuff/kDbg/kDbgModule.cpp
- Timestamp:
- Aug 31, 2007, 4:39:26 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kDbg/kDbgModule.cpp
r3552 r3571 343 343 * @param pSym Where to store the symbol details. 344 344 */ 345 KDBG_DECL(int) kDbgModuleQuerySymbol(PKDBGMOD pMod, int32_tiSegment, KDBGADDR off, PKDBGSYMBOL pSym)345 KDBG_DECL(int) kDbgModuleQuerySymbol(PKDBGMOD pMod, KI32 iSegment, KDBGADDR off, PKDBGSYMBOL pSym) 346 346 { 347 347 KDBGMOD_VALIDATE(pMod); … … 365 365 * Free the returned symbol using kDbgSymbolFree(). 366 366 */ 367 KDBG_DECL(int) kDbgModuleQuerySymbolA(PKDBGMOD pMod, int32_tiSegment, KDBGADDR off, PPKDBGSYMBOL ppSym)367 KDBG_DECL(int) kDbgModuleQuerySymbolA(PKDBGMOD pMod, KI32 iSegment, KDBGADDR off, PPKDBGSYMBOL ppSym) 368 368 { 369 369 kDbgAssertPtrReturn(ppSym, KERR_INVALID_POINTER); … … 396 396 * @param pLine Where to store the line number details. 397 397 */ 398 KDBG_DECL(int) kDbgModuleQueryLine(PKDBGMOD pMod, int32_tiSegment, KDBGADDR off, PKDBGLINE pLine)398 KDBG_DECL(int) kDbgModuleQueryLine(PKDBGMOD pMod, KI32 iSegment, KDBGADDR off, PKDBGLINE pLine) 399 399 { 400 400 KDBGMOD_VALIDATE(pMod); … … 418 418 * Free the returned line number using kDbgLineFree(). 419 419 */ 420 KDBG_DECL(int) kDbgModuleQueryLineA(PKDBGMOD pMod, int32_tiSegment, KDBGADDR off, PPKDBGLINE ppLine)420 KDBG_DECL(int) kDbgModuleQueryLineA(PKDBGMOD pMod, KI32 iSegment, KDBGADDR off, PPKDBGLINE ppLine) 421 421 { 422 422 kDbgAssertPtrReturn(ppLine, KERR_INVALID_POINTER);
Note:
See TracChangeset
for help on using the changeset viewer.