mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 11:46:27 +00:00
Merge branch 'dolphin-emu:master' into master
This commit is contained in:
commit
4f03cba1dc
1 changed files with 6 additions and 0 deletions
|
@ -24,6 +24,12 @@ public:
|
||||||
// Closes the library.
|
// Closes the library.
|
||||||
~DynamicLibrary();
|
~DynamicLibrary();
|
||||||
|
|
||||||
|
DynamicLibrary(const DynamicLibrary&) = delete;
|
||||||
|
DynamicLibrary(DynamicLibrary&&) = delete;
|
||||||
|
|
||||||
|
DynamicLibrary& operator=(const DynamicLibrary&) = delete;
|
||||||
|
DynamicLibrary& operator=(DynamicLibrary&&) = delete;
|
||||||
|
|
||||||
// Returns the specified library name with the platform-specific suffix added.
|
// Returns the specified library name with the platform-specific suffix added.
|
||||||
static std::string GetUnprefixedFilename(const char* filename);
|
static std::string GetUnprefixedFilename(const char* filename);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue