You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
- #include <plugin/Plugin.hpp>
-
-
- /** Called immediately after loading your plugin.
-
- Use this to save `plugin` to a global variable and add Models to it.
- Required in plugins.
- */
- extern "C"
- void init(rack::plugin::Plugin* plugin);
-
- /** Called before your plugin library is unloaded.
-
- Optional in plugins.
- */
- extern "C"
- void destroy();
|