mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-13 11:21:06 +00:00
remove unneeded fluid_server_newclient_func_t
This commit is contained in:
parent
b79f2a614e
commit
86a19090eb
2 changed files with 0 additions and 8 deletions
|
@ -105,13 +105,6 @@ FLUIDSYNTH_API void delete_fluid_shell(fluid_shell_t* shell);
|
|||
|
||||
/* TCP/IP server */
|
||||
|
||||
/**
|
||||
* Callback function which is executed for new server connections.
|
||||
* @param data User defined data supplied in call to new_fluid_server()
|
||||
* @param addr The IP address of the client (can be NULL)
|
||||
* @return Should return a new command handler for the connection (new_fluid_cmd_handler()).
|
||||
*/
|
||||
typedef fluid_cmd_handler_t* (*fluid_server_newclient_func_t)(void* data, char* addr, char* addr2);
|
||||
|
||||
FLUIDSYNTH_API
|
||||
fluid_server_t* new_fluid_server(fluid_settings_t* settings,
|
||||
|
|
|
@ -2005,7 +2005,6 @@ fluid_cmd_handler_handle(fluid_cmd_handler_t* handler, int ac, char** av, fluid_
|
|||
struct _fluid_server_t {
|
||||
fluid_server_socket_t* socket;
|
||||
fluid_settings_t* settings;
|
||||
fluid_server_newclient_func_t newclient;
|
||||
fluid_synth_t* synth;
|
||||
fluid_midi_router_t* router;
|
||||
fluid_list_t* clients;
|
||||
|
|
Loading…
Reference in a new issue