JCL Help:TJclPeImportList.SmartFindName

From Project JEDI Wiki
Jump to navigationJump to search


Summary

Searches the import section for a specific function.


Pascal

 public function SmartFindName(const CompareName: string; const LibName: string; Options: TJclSmartCompOptions = []): TJclPeImportFuncItem;


Parameters

Parameters Description
const CompareName: string Name of the function to search for.
const LibName: string Image from which the function should be imported. If you specify an empty string the search includes all images.
Options: TJclSmartCompOptions = [] Set of options that influence the name comparison such as whether it's case-sensitive. See the description of TJclSmartCompOptions for more information.


Return Value

If the specified function was found SmartFindName returns a reference to the TJclPeImportFuncItem that represents the found imported function. This reference remains owned by the class so you shouldn't free it. It also remains valid only as long as the TJclPeImportList isn't destroyed. If the function couldn't be found the return value is nil.


Description

The SmartFindName method searches through the all the import directories that apply to the specified image name (LibName parameter) for the specified function name (CompareName). Through the Options parameter you can specify whether the search should be case-sensitive and/or base the comparison on the full name or only the basename of the function.


About

Donator

Petr Vones


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