Completed mixer API. Improved iterators. Renamed control values struct. Rewritten simple elements implementation

This commit is contained in:
Abramo Bagnara 2001-02-11 15:45:35 +00:00
parent 38033b49dd
commit a2d3434961
54 changed files with 2081 additions and 1712 deletions

View file

@ -76,7 +76,7 @@ struct _snd_seq {
int mode;
int poll_fd;
snd_seq_ops_t *ops;
void *private;
void *private_data;
int client; /* client number */
/* buffers */
char *obuf; /* output buffer */
@ -90,6 +90,6 @@ struct _snd_seq {
size_t tmpbufsize; /* size of errbuf */
};
int snd_seq_hw_open(snd_seq_t **handle, char *name, int streams, int mode);
int snd_seq_hw_open(snd_seq_t **handle, const char *name, int streams, int mode);
#endif