Ignore:
Timestamp:
Aug 25, 2007, 5:46:14 AM (18 years ago)
Author:
bird
Message:

errors and stuff.

File:
1 edited

Legend:

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

    r3537 r3541  
    151151        }
    152152#endif
    153         rc = KDBG_ERR_NOT_IMPLEMENTED;
     153        rc = KERR_NOT_IMPLEMENTED;
    154154    }
    155155    return rc;
     
    215215        }
    216216#endif
    217         rc = KDBG_ERR_NOT_IMPLEMENTED;
     217        rc = KERR_NOT_IMPLEMENTED;
    218218    }
    219219    return rc;
     
    235235    //kDbgAssertMsgFailed(("SymInitialize failed: Err=%d rc=%Rrc\n", Err, rc));
    236236    //return rc;
    237     return KDBG_ERR_NOT_IMPLEMENTED;
    238 }
    239 
    240 
    241 /**
    242  * Methods for a PE module.
    243  */
    244 static const KDBGMODOPS g_kDbgModPeOps =
    245 {
    246     "PE",
    247     kDbgModPeClose,
    248     kDbgModPeQuerySymbol,
    249     kDbgModPeQueryLine
    250 };
     237    return KERR_NOT_IMPLEMENTED;
     238}
    251239
    252240
     
    286274     */
    287275    PKDBGMODPE pModPe = (PKDBGMODPE)kDbgHlpAlloc(KDBG_OFFSETOF(KDBGMODPE, aSections[FHdr.NumberOfSections + 2]));
    288     kDbgAssertReturn(pModPe, KDBG_ERR_NO_MEMORY);
     276    kDbgAssertReturn(pModPe, KERR_NO_MEMORY);
    289277    pModPe->Core.u32Magic   = KDBGMOD_MAGIC;
    290278    pModPe->Core.pOps       = &g_kDbgModPeOps;
     
    368356        }
    369357#endif
    370         rc = KDBG_ERR_NOT_IMPLEMENTED;
     358        rc = KERR_NOT_IMPLEMENTED;
    371359    }
    372360    else
     
    377365}
    378366
     367
     368/**
     369 * Methods for a PE module.
     370 */
     371const KDBGMODOPS g_kDbgModPeOps =
     372{
     373    "PE",
     374    kDbgModPeClose,
     375    kDbgModPeQuerySymbol,
     376    kDbgModPeQueryLine
     377};
     378
     379
     380
Note: See TracChangeset for help on using the changeset viewer.