macro_rules! native_plugin_entry {
($plugin_type:ty) => { ... };
}Expand description
Macro to generate C ABI exports for a plugin
This macro should be called once per plugin with the type that implements
NativeProcessorNode.
ยงExample
native_plugin_entry!(MyPlugin);