macro_rules! sesh_plugin {
($ty:ident) => { ... };
}Expand description
Define a Sesh audio plugin.
Generates the required WASM exports: sesh_sdk_version, sesh_alloc,
sesh_free, sesh_create, sesh_destroy, and sesh_process.
The type must implement the Plugin trait.