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().
After construction, use TFindLibrary::Next() to repeatedly find successive DLLs whose names match the current pattern. A successful call to TFindLibrary::Next() means that a matching DLL has been found.
Public Member Functions | |
---|---|
TFindLibrary() | |
TFindLibrary(const TDesC &) | |
IMPORT_C TInt | Next(TFullName &) |
TFindLibrary | ( | ) | [inline] |
Constructs this object with a default match pattern.
The default match pattern is the single character * and is implemented by the base class TFindHandleBase.
TFindLibrary | ( | const TDesC & | aMatch | ) | [inline] |
Constructs this object with the specified match pattern.
const TDesC & aMatch | The descriptor containing the match pattern. |