macro_rules! export_plugin {
($ty:ty) => { ... };
}Expand description
Export the three #[no_mangle] functions required by the shell.
ⓘ
struct MyPlugin { /* ... */ }
impl PluginLogic for MyPlugin { /* ... */ }
export_plugin!(MyPlugin);