Find a resident module by name
Source position: exec.pas line 1235
function FindResident( |
const name: pCHAR |
):pResident; |
const name: string |
):pResident; |
name |
|
Name of the resident to find |
A pointer to the resident tag structure or nil if none found.
name |
|
Name of the resident to find |
Search the system resident tag list for a resident tag ("ROMTag") with the given name. If found return a pointer to the resident tag structure, else return nil.
Resident modules are used by the system to pull all its parts together at startup. Resident tags are also found in disk based devices and libraries.
|
Initialize resident module |