| 13 | extern "C" MYGUI_EXPORT_DLL void dllStopPlugin(void); |
| 14 | |
| 15 | extern "C" MYGUI_EXPORT_DLL void dllStartPlugin(void) |
| 16 | { |
| 17 | plugin_item = new plugin::Plugin(); |
| 18 | MyGUI::PluginManager::getInstance().installPlugin(plugin_item); |
| 19 | } |
| 20 | |
| 21 | extern "C" MYGUI_EXPORT_DLL void dllStopPlugin(void) |
| 22 | { |
nothing calls this directly
no test coverage detected