mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-03-01 15:10:43 +00:00
update API doc
This commit is contained in:
parent
86a19090eb
commit
360ae04135
2 changed files with 7 additions and 8 deletions
|
@ -80,9 +80,12 @@ Changes in FluidSynth @NEXT_RELEASE@ concerning developers:
|
||||||
- remove obsolete "audio.[out|in]put-channels" settings
|
- remove obsolete "audio.[out|in]put-channels" settings
|
||||||
- remove unimplemented "synth.dump" setting
|
- remove unimplemented "synth.dump" setting
|
||||||
- remove fluid_synth_set_gen2(), fluid_synth_set_gen() now behaves as fluid_synth_set_gen2()
|
- remove fluid_synth_set_gen2(), fluid_synth_set_gen() now behaves as fluid_synth_set_gen2()
|
||||||
|
- remove struct fluid_mod_t from public API, use the getters and setters of mod.h instead
|
||||||
|
- remove struct _fluid_gen_t, fluid_gen_set_default_values() and enum fluid_gen_flags from public API
|
||||||
|
|
||||||
- all public \c fluid_settings_* functions that return an integer which is not meant to be interpreted as bool consistently return either FLUID_OK or FLUID_FAILED
|
- all public \c fluid_settings_* functions that return an integer which is not meant to be interpreted as bool consistently return either FLUID_OK or FLUID_FAILED
|
||||||
- struct fluid_mod_t was removed from public API
|
- the shell command handler was decoupled internally, as a consequence the param list of new_fluid_server() and new_fluid_cmd_handler() was adapted
|
||||||
- struct _fluid_gen_t, fluid_gen_set_default_values() and enum fluid_gen_flags were removed from public API
|
|
||||||
- add "synth.volenv" a setting for volume envelope processing
|
- add "synth.volenv" a setting for volume envelope processing
|
||||||
- add support for polyonic key pressure events, see fluid_event_key_pressure()
|
- add support for polyonic key pressure events, see fluid_event_key_pressure()
|
||||||
- add fluid_synth_add_default_mod() for manipulating default modulators
|
- add fluid_synth_add_default_mod() for manipulating default modulators
|
||||||
|
|
|
@ -2001,7 +2001,6 @@ fluid_cmd_handler_handle(fluid_cmd_handler_t* handler, int ac, char** av, fluid_
|
||||||
#if !defined(WITHOUT_SERVER)
|
#if !defined(WITHOUT_SERVER)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
struct _fluid_server_t {
|
struct _fluid_server_t {
|
||||||
fluid_server_socket_t* socket;
|
fluid_server_socket_t* socket;
|
||||||
fluid_settings_t* settings;
|
fluid_settings_t* settings;
|
||||||
|
@ -2019,8 +2018,8 @@ static void fluid_server_close(fluid_server_t* server);
|
||||||
/**
|
/**
|
||||||
* Create a new TCP/IP command shell server.
|
* Create a new TCP/IP command shell server.
|
||||||
* @param settings Settings instance to use for the shell
|
* @param settings Settings instance to use for the shell
|
||||||
* @param newclient Callback function to call for each new client connection
|
* @param synth If not NULL, the synth instance for the command handler to be used by the client
|
||||||
* @param data User defined data to pass to \a newclient callback
|
* @param router If not NULL, the midi_router instance for the command handler to be used by the client
|
||||||
* @return New shell server instance or NULL on error
|
* @return New shell server instance or NULL on error
|
||||||
*/
|
*/
|
||||||
fluid_server_t*
|
fluid_server_t*
|
||||||
|
@ -2149,8 +2148,6 @@ int fluid_server_join(fluid_server_t* server)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
struct _fluid_client_t {
|
struct _fluid_client_t {
|
||||||
fluid_server_t* server;
|
fluid_server_t* server;
|
||||||
fluid_settings_t* settings;
|
fluid_settings_t* settings;
|
||||||
|
@ -2160,7 +2157,6 @@ struct _fluid_client_t {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static void fluid_client_run(fluid_client_t* client)
|
static void fluid_client_run(fluid_client_t* client)
|
||||||
{
|
{
|
||||||
fluid_shell_t shell;
|
fluid_shell_t shell;
|
||||||
|
|
Loading…
Reference in a new issue