Skip to main content

sesh_plugin

Macro sesh_plugin 

Source
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.