Changeset 2946
- Timestamp:
- Jan 14, 2007, 9:42:21 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrMod.c
r2891 r2946 487 487 488 488 /** 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 */ 496 int kLdrModMostlyDone(PKLDRMOD pMod) 497 { 498 KLDRMOD_VALIDATE(pMod); 499 return pMod->pOps->pfnMostlyDone(pMod); 500 } 501 502 503 /** 489 504 * Maps the module into the memory of the caller. 490 505 *
Note:
See TracChangeset
for help on using the changeset viewer.