remove unimplemented fluid_handle_mstat()

This commit is contained in:
derselbst 2017-10-28 13:31:10 +02:00
parent 634c07ed45
commit 642b9750b2
2 changed files with 0 additions and 18 deletions

View file

@ -767,23 +767,6 @@ fluid_handle_fonts(void* data, int ac, char** av, fluid_ostream_t out)
return 0;
}
int
fluid_handle_mstat(void* data, int ac, char** av, fluid_ostream_t out)
{
/* fluid_ostream_printf(out, "Dvr=%s, Dev=%s\n", */
/* fluid_midi_handler_get_driver_name(midi), */
/* fluid_midi_handler_get_device_name(midi)); */
/* fluid_ostream_printf(out, "Stat=%s, On=%d, Off=%d, Prog=%d, Pbend=%d, Err=%d\n", */
/* fluid_midi_handler_get_status(midi), */
/* fluid_midi_handler_get_event_count(midi, 0x90), */
/* fluid_midi_handler_get_event_count(midi, 0x80), */
/* fluid_midi_handler_get_event_count(midi, 0xc0), */
/* fluid_midi_handler_get_event_count(midi, 0xe0), */
/* fluid_midi_handler_get_event_count(midi, 0)); */
fluid_ostream_printf(out, "not yet implemented\n");
return -1;
}
/* Purpose:
* Response to 'rev_preset' command.
* Load the values from a reverb preset into the reverb unit. */

View file

@ -48,7 +48,6 @@ int fluid_handle_load(void* data, int ac, char** av, fluid_ostream_t out);
int fluid_handle_unload(void* data, int ac, char** av, fluid_ostream_t out);
int fluid_handle_reload(void* data, int ac, char** av, fluid_ostream_t out);
int fluid_handle_fonts(void* data, int ac, char** av, fluid_ostream_t out);
int fluid_handle_mstat(void* data, int ac, char** av, fluid_ostream_t out);
int fluid_handle_reverbpreset(void* data, int ac, char** av, fluid_ostream_t out);
int fluid_handle_reverbsetroomsize(void* data, int ac, char** av, fluid_ostream_t out);
int fluid_handle_reverbsetdamp(void* data, int ac, char** av, fluid_ostream_t out);