Handles the opening and closing of DLLs.
This class can be used to open a DLL and get some function pointers from it. Since the DLL is freed when this object is deleted, it's handy for managing library lifetimes using RAII.
Public Member Functions | |
| DynamicLibrary ()=default | |
| Creates an unopened DynamicLibrary object. | |
| DynamicLibrary (const String &name) | |
| Creates an opened DynamicLibrary object. | |
| DynamicLibrary (DynamicLibrary &&other) noexcept | |
| Move constructor. | |
| ~DynamicLibrary () | |
| Destructor. | |
| bool | open (const String &name) |
| Opens a DLL. | |
| void | close () |
| Releases the currently-open DLL, or has no effect if none was open. | |
| void * | getFunction (const String &functionName) noexcept |
| Tries to find a named function in the currently-open DLL and returns a pointer to it. | |
| template<typename Fn> | |
| Fn * | getFunction (const String &functionName) noexcept |
| Tries to find a named function in the currently-open DLL and returns a pointer to it, cast to the requested function type. | |
| bool | isOpen () const noexcept |
| Returns true if the library was successfully found and opened. | |
| void * | getNativeHandle () const noexcept |
| Returns the platform-specific native library handle. | |
|
default |
Creates an unopened DynamicLibrary object.
Call open() to actually open one.
Referenced by DynamicLibrary().
|
inline |
Creates an opened DynamicLibrary object.
|
inlinenoexcept |
Move constructor.
References DynamicLibrary().
|
inline |
Destructor.
If a library is currently open, it will be closed when this object is destroyed.
References close().
| bool juce::DynamicLibrary::open | ( | const String & | name | ) |
Opens a DLL.
The name and the method by which it gets found is platform-specific, and may or may not include a path, depending on the OS.
If a library is already open when this method is called, it will first close the library before attempting to load the new one.
References name.
Referenced by DynamicLibrary().
| void juce::DynamicLibrary::close | ( | ) |
Releases the currently-open DLL, or has no effect if none was open.
Referenced by ~DynamicLibrary().
|
noexcept |
Tries to find a named function in the currently-open DLL and returns a pointer to it.
If the library is not currently open, or if the named function cannot be found, this method will return a null pointer.
Referenced by getFunction().
|
inlinenoexcept |
Tries to find a named function in the currently-open DLL and returns a pointer to it, cast to the requested function type.
If the library is not currently open, or if the named function cannot be found, this method will return a null pointer.
The template parameter must be a function type, e.g.
It is the caller's responsibility to ensure that the requested function signature matches the actual function exported by the dynamic library. Passing an incorrect signature will result in undefined behaviour.
References getFunction().
|
inlinenoexcept |
Returns true if the library was successfully found and opened.
|
inlinenoexcept |
Returns the platform-specific native library handle.
You'll need to cast this to whatever is appropriate for the OS that's in use.