Ignore:
Timestamp:
Aug 31, 2007, 4:39:26 AM (18 years ago)
Author:
bird
Message:

Eliminated KLDRPROT.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/kDbg/kDbgModule.cpp

    r3552 r3571  
    343343 * @param   pSym        Where to store the symbol details.
    344344 */
    345 KDBG_DECL(int) kDbgModuleQuerySymbol(PKDBGMOD pMod, int32_t iSegment, KDBGADDR off, PKDBGSYMBOL pSym)
     345KDBG_DECL(int) kDbgModuleQuerySymbol(PKDBGMOD pMod, KI32 iSegment, KDBGADDR off, PKDBGSYMBOL pSym)
    346346{
    347347    KDBGMOD_VALIDATE(pMod);
     
    365365 *                      Free the returned symbol using kDbgSymbolFree().
    366366 */
    367 KDBG_DECL(int) kDbgModuleQuerySymbolA(PKDBGMOD pMod, int32_t iSegment, KDBGADDR off, PPKDBGSYMBOL ppSym)
     367KDBG_DECL(int) kDbgModuleQuerySymbolA(PKDBGMOD pMod, KI32 iSegment, KDBGADDR off, PPKDBGSYMBOL ppSym)
    368368{
    369369    kDbgAssertPtrReturn(ppSym, KERR_INVALID_POINTER);
     
    396396 * @param   pLine       Where to store the line number details.
    397397 */
    398 KDBG_DECL(int) kDbgModuleQueryLine(PKDBGMOD pMod, int32_t iSegment, KDBGADDR off, PKDBGLINE pLine)
     398KDBG_DECL(int) kDbgModuleQueryLine(PKDBGMOD pMod, KI32 iSegment, KDBGADDR off, PKDBGLINE pLine)
    399399{
    400400    KDBGMOD_VALIDATE(pMod);
     
    418418 *                      Free the returned line number using kDbgLineFree().
    419419 */
    420 KDBG_DECL(int) kDbgModuleQueryLineA(PKDBGMOD pMod, int32_t iSegment, KDBGADDR off, PPKDBGLINE ppLine)
     420KDBG_DECL(int) kDbgModuleQueryLineA(PKDBGMOD pMod, KI32 iSegment, KDBGADDR off, PPKDBGLINE ppLine)
    421421{
    422422    kDbgAssertPtrReturn(ppLine, KERR_INVALID_POINTER);
Note: See TracChangeset for help on using the changeset viewer.