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.

11 lines
204B

  1. #pragma once
  2. #include <plugin/Plugin.hpp>
  3. /** Called once to initialize and return the Plugin instance.
  4. You must implement this in your plugin
  5. */
  6. extern "C" {
  7. void init(rack::plugin::Plugin* plugin);
  8. }