diff --git a/src/DllMain.cpp b/src/DllMain.cpp index 8230dab..a77c8cf 100644 --- a/src/DllMain.cpp +++ b/src/DllMain.cpp @@ -9,12 +9,6 @@ Plugin plugin; extern "C" { _declspec(dllexport) bool ll_plugin_load(ll::plugin::Plugin& self) { return plugin.load(self); } - -_declspec(dllexport) bool ll_plugin_unload(ll::plugin::Plugin& self) { return plugin.unload(self); } - -_declspec(dllexport) bool ll_plugin_enable(ll::plugin::Plugin& self) { return plugin.enable(self); } - -_declspec(dllexport) bool ll_plugin_disable(ll::plugin::Plugin& self) { return plugin.disable(self); } } } // namespace plugins