| 2395 | } |
| 2396 | |
| 2397 | static void CLAP_ABI clap_plugin_params_flush(const clap_plugin_t* plugin, const clap_input_events_t* in, const clap_output_events_t* out) |
| 2398 | { |
| 2399 | PluginCLAP* const instance = static_cast<PluginCLAP*>(plugin->plugin_data); |
| 2400 | return instance->flushParameters(in, out, 0); |
| 2401 | } |
| 2402 | |
| 2403 | static const clap_plugin_params_t clap_plugin_params = { |
| 2404 | clap_plugin_params_count, |
nothing calls this directly
no test coverage detected