diff options
| author | 2023-06-05 21:43:43 -0700 | |
|---|---|---|
| committer | 2023-06-05 21:43:43 -0700 | |
| commit | cb95d7fe1b6d81899fe6b279400da2c991e3132c (patch) | |
| tree | a856ac45b1053009c4c11ee141c49d7faa4c8a19 /src/common/dynamic_library.h | |
| parent | Merge pull request #10611 from liamwhite/audio-deadlock (diff) | |
| parent | Merge pull request #10633 from t895/variable-surface-ratio (diff) | |
| download | yuzu-cb95d7fe1b6d81899fe6b279400da2c991e3132c.tar.gz yuzu-cb95d7fe1b6d81899fe6b279400da2c991e3132c.tar.xz yuzu-cb95d7fe1b6d81899fe6b279400da2c991e3132c.zip | |
Merge pull request #10508 from yuzu-emu/lime
Project Lime - yuzu Android Port
Diffstat (limited to 'src/common/dynamic_library.h')
| -rw-r--r-- | src/common/dynamic_library.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/dynamic_library.h b/src/common/dynamic_library.h index f42bdf441..662d454d4 100644 --- a/src/common/dynamic_library.h +++ b/src/common/dynamic_library.h | |||
| @@ -20,6 +20,9 @@ public: | |||
| 20 | /// Automatically loads the specified library. Call IsOpen() to check validity before use. | 20 | /// Automatically loads the specified library. Call IsOpen() to check validity before use. |
| 21 | explicit DynamicLibrary(const char* filename); | 21 | explicit DynamicLibrary(const char* filename); |
| 22 | 22 | ||
| 23 | /// Initializes the dynamic library with an already opened handle. | ||
| 24 | explicit DynamicLibrary(void* handle_); | ||
| 25 | |||
| 23 | /// Moves the library. | 26 | /// Moves the library. |
| 24 | DynamicLibrary(DynamicLibrary&&) noexcept; | 27 | DynamicLibrary(DynamicLibrary&&) noexcept; |
| 25 | DynamicLibrary& operator=(DynamicLibrary&&) noexcept; | 28 | DynamicLibrary& operator=(DynamicLibrary&&) noexcept; |