[Overview][Constants][Types][Procedures and functions] | Reference for unit 'dynlibs' (#rtl) |
Get the address of a procedure or symbol in a dynamic library.
Source position: dynlibs.pas line 37
function GetProcedureAddress( |
Lib: TLibHandle; |
ProcName: AnsiString |
):Pointer; |
GetProcedureAddress returns a pointer to the location in memory of the symbol ProcName in the dynamically loaded library specified by it's handle lib. If the symbol cannot be found or the handle is invalid, Nil is returned.
On Windows, only an exported procedure or function can be searched this way. On Unix platforms the location of any exported symbol can be retrieved this way.
If the symbol cannot be found, Nil is returned.
|
Load a dynamic library and return a handle to it. |
|
|
Unload a previously loaded library |
No notes exist for this page yet.