MCPcopy Create free account
hub / github.com/MyGUI/mygui / getSymbol

Method getSymbol

MyGUIEngine/src/MyGUI_DynLib.cpp:85–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 2

loadPluginMethod · 0.80
unloadPluginMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected