diff options
author | Abramo Bagnara <abramo@alsa-project.org> | 2001-02-11 15:45:35 +0000 |
---|---|---|
committer | Abramo Bagnara <abramo@alsa-project.org> | 2001-02-11 15:45:35 +0000 |
commit | a2d34349619fd652a15219f4239794ef87d78236 (patch) | |
tree | 21ec219a5a0971e89045483e9718466e68310cb7 /include/seqmid.h | |
parent | 38033b49dd969cd65a39174cc8554380df30152b (diff) |
Completed mixer API. Improved iterators. Renamed control values struct. Rewritten simple elements implementation
Diffstat (limited to 'include/seqmid.h')
-rw-r--r-- | include/seqmid.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/seqmid.h b/include/seqmid.h index d47d3646..cc8a123b 100644 --- a/include/seqmid.h +++ b/include/seqmid.h @@ -72,7 +72,7 @@ int snd_seq_change_queue_tempo(snd_seq_t *seq, int q, int tempo, snd_seq_event_t int snd_seq_setpos_queue(snd_seq_t *seq, int q, snd_seq_timestamp_t *rtime, snd_seq_event_t *ev); /* create a port - simple version - return the port number */ -int snd_seq_create_simple_port(snd_seq_t *seq, char *name, +int snd_seq_create_simple_port(snd_seq_t *seq, const char *name, unsigned int caps, unsigned int type); /* delete the port */ int snd_seq_delete_simple_port(snd_seq_t *seq, int port); @@ -88,8 +88,8 @@ int snd_seq_disconnect_to(snd_seq_t *seq, int my_port, int dest_client, int dest /* * set client information */ -int snd_seq_set_client_name(snd_seq_t *seq, char *name); -int snd_seq_set_client_group(snd_seq_t *seq, char *name); +int snd_seq_set_client_name(snd_seq_t *seq, const char *name); +int snd_seq_set_client_group(snd_seq_t *seq, const char *name); int snd_seq_set_client_filter(snd_seq_t *seq, unsigned int filter); int snd_seq_set_client_event_filter(snd_seq_t *seq, int event_type); int snd_seq_set_client_pool_output(snd_seq_t *seq, int size); |