JCL Help:GetModuleSymbol

From Project JEDI Wiki
Jump to navigationJump to search


Summary

Gives access to the exported symbol SymbolName from the loaded module Module.


Pascal

 function GetModuleSymbol(Module: TModuleHandle; SymbolName: string): Pointer;


Parameters

Parameters Description
Module: TModuleHandle Handle to the loaded module.
SymbolName: string Name of the exported symbol to access.


Return Value

The pointer to the exported symbol. Normally this is a "pointer to function" as C calls it. In Pascal its a function type. nil is returned for symbols not contained in the module.


Description

Gives access to the exported symbol SymbolName from the loaded module Module. Normally this is the name of an exported function.


See Also

GetModuleSymbolEx


About

Unit

JclSysUtils


Donator

Robert Marquardt


Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page