LADSPA deactivate function
| 251 | |
| 252 | /// LADSPA deactivate function |
| 253 | static void cb_deactivate(LADSPA_Handle Instance) { |
| 254 | ((ladspa_instance *)(Instance))->module->deactivate(); |
| 255 | } |
| 256 | |
| 257 | /// LADSPA cleanup (delete instance) function |
| 258 | static void cb_cleanup(LADSPA_Handle Instance) { |
nothing calls this directly
no test coverage detected