Updated help command related output to reflect change to 'help' listing help topics.

Added fluid_player_get_status() to the new API list in the developers doc.
This commit is contained in:
Josh Green 2009-10-28 19:54:15 +00:00
parent b3fb606bde
commit e49ccb7373
2 changed files with 2 additions and 4 deletions

View file

@ -103,7 +103,7 @@ API additions:
fluid_synth_program_select_by_sfont_name() to select an instrument by SoundFont name/bank/program,
fluid_synth_set_gen2() for specifying additional parameters when assigning a generator value,
and fluid_synth_sysex() for sending SYSEX messages to the synth.
- Miscellaneous additions: fluid_player_set_loop() to set playlist loop count.
- Miscellaneous additions: fluid_player_set_loop() to set playlist loop count and fluid_player_get_status() to get current player state.

View file

@ -60,7 +60,7 @@ void fluid_shell_settings(fluid_settings_t* settings)
fluid_cmd_t fluid_commands[] = {
{ "help", "general", (fluid_cmd_func_t) fluid_handle_help, NULL,
"help Command summary. 'help help' for more help topics" },
"help Show help topics ('help TOPIC' for more info)" },
{ "quit", "general", (fluid_cmd_func_t) fluid_handle_quit, NULL,
"quit Quit the synthesizer" },
{ "noteon", "event", (fluid_cmd_func_t) fluid_handle_noteon, NULL,
@ -1518,7 +1518,6 @@ fluid_handle_help(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
* - help
* - help (topic), where (topic) is 'general', 'chorus', etc.
* - help all
* - help help
*/
char* topic = "help"; /* default, if no topic is given */
@ -1534,7 +1533,6 @@ fluid_handle_help(fluid_synth_t* synth, int ac, char** av, fluid_ostream_t out)
/* "help help": Print a list of all topics */
fluid_ostream_printf(out,
"*** Help topics:***\n"
"help help (prints this list)\n"
"help all (prints all topics)\n");
for (i = 0; fluid_commands[i].name != NULL; i++) {
int listed_first_time = 1;