| 324 | |
| 325 | #if DISTRHO_PLUGIN_WANT_PROGRAMS |
| 326 | int osc_program_handler(const char*, const char*, lo_arg** argv, int, lo_message, void*) |
| 327 | { |
| 328 | const int32_t bank = argv[0]->i; |
| 329 | const int32_t program = argv[1]->f; |
| 330 | d_debug("osc_program_handler(%i, %i)", bank, program); |
| 331 | |
| 332 | initUiIfNeeded(); |
| 333 | |
| 334 | globalUI->dssiui_program(bank, program); |
| 335 | |
| 336 | return 0; |
| 337 | } |
| 338 | #endif |
| 339 | |
| 340 | int osc_sample_rate_handler(const char*, const char*, lo_arg** argv, int, lo_message, void*) |
nothing calls this directly
no test coverage detected