|
||
class TFindLibrary : public TFindHandleBase;
Searches for DLLs whose full names match a specified pattern.
The match pattern is set at construction but can also be changed at any time after construction by using TFindHandleBase::Find(const TDesC &)
.
After construction, use TFindLibrary::Next(TFullName &)
to repeatedly find successive DLLs whose names match the current pattern. A successful call to TFindLibrary::Next(TFullName &)
means that a matching DLL has been found.
TFindHandle
- No description.
TFindHandleBase
-
Base class for searching for global kernel objects.
TFindLibrary
-
Searches for DLLs whose full names match a specified pattern.
Defined in TFindLibrary
:
Next(TFullName &)
Finds the next DLL whose full name matches the match pattern.TFindLibrary()
Constructs this object with a default match pattern.TFindLibrary(const TDesC &)
Constructs this object with the specified match pattern.Inherited from TFindHandleBase
:
Find(const TDesC &)
Sets a new match pattern.TFindHandleBase(const TDesC &)
Constructor with match pattern.inline TFindLibrary();
Constructs this object with a default match pattern.
The default match pattern is the single character ‘*’ and is implemented by the base class TFindHandleBase
.
inline TFindLibrary(const TDesC &aMatch);
Constructs this object with the specified match pattern.
|
IMPORT_C TInt Next(TFullName &aResult);
Finds the next DLL whose full name matches the match pattern.
If a DLL with a matching name is found, the function copies the full name of the DLL into the descriptor aResult.
|
|