Ignore:
Timestamp:
Sep 2, 2007, 10:55:51 PM (18 years ago)
Author:
bird
Message:

kLdrRdr cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/kLdr/kLdrDyldMod.c

    r3573 r3578  
    6666 * @param   ppMod   Where to put the pointer to the new module on success.
    6767 */
    68 int kldrDyldModCreate(PKLDRRDR pRdr, KU32 fFlags, PPKLDRDYLDMOD ppMod)
     68int kldrDyldModCreate(PKRDR pRdr, KU32 fFlags, PPKLDRDYLDMOD ppMod)
    6969{
    7070    PKLDRDYLDMOD pMod;
     
    8181    rc = kLdrModOpenFromRdr(pRdr, &pRawMod);
    8282    if (rc)
    83         return kldrDyldFailure(rc, "%s: %rc", kLdrRdrName(pRdr), rc);
     83        return kldrDyldFailure(rc, "%s: %rc", kRdrName(pRdr), rc);
    8484
    8585    /*
     
    207207#ifdef __OS2__
    208208    HMODULE hmod = NULLHANDLE;
    209     APIRET rc = DosQueryModuleHandle(kLdrRdrName(pRdr), &hmod);
     209    APIRET rc = DosQueryModuleHandle(kRdrName(pRdr), &hmod);
    210210    if (!rc)
    211211
    212212#elif defined(__WIN__)
    213213    HMODULE hmod = NULL;
    214     if (GetModuleHandle(kLdrRdrName(pRdr))
     214    if (GetModuleHandle(kRdrName(pRdr))
    215215
    216216#else
Note: See TracChangeset for help on using the changeset viewer.