Changeset 2946


Ignore:
Timestamp:
Jan 14, 2007, 9:42:21 AM (19 years ago)
Author:
bird
Message:

Added missing kLdrModMostlyDone().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrMod.c

    r2891 r2946  
    487487
    488488/**
     489 * May free up some resources held by the module.
     490 *
     491 * @todo define exactly what it possible to do after this call.
     492 *
     493 * @returns 0 on success, KLDR_ERR_* on failure.
     494 * @param   pMod    The module.
     495 */
     496int     kLdrModMostlyDone(PKLDRMOD pMod)
     497{
     498    KLDRMOD_VALIDATE(pMod);
     499    return pMod->pOps->pfnMostlyDone(pMod);
     500}
     501
     502
     503/**
    489504 * Maps the module into the memory of the caller.
    490505 *
Note: See TracChangeset for help on using the changeset viewer.