| 83 | } |
| 84 | |
| 85 | void* DynLib::getSymbol(const char* strName) const noexcept |
| 86 | { |
| 87 | #ifdef MYGUI_DISABLE_PLUGINS |
| 88 | MYGUI_EXCEPT("Plugins support disabled, rebuild MyGUI without MYGUI_DISABLE_PLUGINS"); |
| 89 | #else |
| 90 | #if MYGUI_PLATFORM == MYGUI_PLATFORM_APPLE |
| 91 | //APPLE SPECIFIC CODE HERE |
| 92 | return nullptr; |
| 93 | #else |
| 94 | return (void*)MYGUI_DYNLIB_GETSYM(mInstance, strName); |
| 95 | #endif |
| 96 | #endif |
| 97 | } |
| 98 | |
| 99 | std::string DynLib::dynlibError() const |
| 100 | { |
no outgoing calls
no test coverage detected