| 10 | namespace fs = std::filesystem; |
| 11 | |
| 12 | const std::string Sapphire::Scripting::ScriptLoader::getModuleExtension() |
| 13 | { |
| 14 | #ifdef _WIN32 |
| 15 | return ".dll"; |
| 16 | #elif __APPLE__ |
| 17 | return ".dylib"; |
| 18 | #else |
| 19 | return ".so"; |
| 20 | #endif |
| 21 | } |
| 22 | |
| 23 | bool Sapphire::Scripting::ScriptLoader::unloadModule( ModuleHandle handle ) |
| 24 | { |
no outgoing calls
no test coverage detected