Skip to main content

export_plugin

Macro export_plugin 

Source
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);