mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 22:57:56 -05:00
common: dynamic_library: Add ctor for existing handle.
This commit is contained in:
@ -20,6 +20,9 @@ public:
|
||||
/// Automatically loads the specified library. Call IsOpen() to check validity before use.
|
||||
explicit DynamicLibrary(const char* filename);
|
||||
|
||||
/// Initializes the dynamic library with an already opened handle.
|
||||
explicit DynamicLibrary(void* handle_);
|
||||
|
||||
/// Moves the library.
|
||||
DynamicLibrary(DynamicLibrary&&) noexcept;
|
||||
DynamicLibrary& operator=(DynamicLibrary&&) noexcept;
|
||||
|
Reference in New Issue
Block a user