| 2327 | { |
| 2328 | public: |
| 2329 | IPlugin *LoadPlugin(const char *path, |
| 2330 | bool debug, |
| 2331 | PluginType type, |
| 2332 | char error[], |
| 2333 | size_t maxlength, |
| 2334 | bool *wasloaded) override |
| 2335 | { |
| 2336 | return g_PluginSys.LoadPlugin(path, debug, type, error, maxlength, wasloaded); |
| 2337 | } |
| 2338 | |
| 2339 | bool UnloadPlugin(IPlugin *plugin) override |
| 2340 | { |
nothing calls this directly
no test coverage detected