Added comments for doxygen.

They are half-automated output from the 0.5.x documents.
The sequencer API will be changed in near future
to suit with encapsulation implemented already in pcm api,
so do not trust the comments added here..
They are just for reference.
This commit is contained in:
Takashi Iwai 2001-06-06 17:50:16 +00:00
parent 3f0a94ed90
commit 5ce8fbeab5
3 changed files with 689 additions and 88 deletions

View file

@ -312,7 +312,7 @@ typedef enum _snd_seq_type {
SND_SEQ_TYPE_INET,
} snd_seq_type_t;
/** Sequencer handle */
/* Sequencer handle */
typedef struct _snd_seq snd_seq_t;
#ifdef __cplusplus
@ -366,6 +366,7 @@ int snd_seq_set_client_pool(snd_seq_t *handle, snd_seq_client_pool_t * info);
int snd_seq_query_next_client(snd_seq_t *handle, snd_seq_client_info_t * info);
int snd_seq_query_next_port(snd_seq_t *handle, snd_seq_port_info_t * info);
#ifdef SND_SEQ_SYNC_SUPPORT
typedef struct sndrv_seq_queue_sync snd_seq_queue_sync_t;
int snd_seq_add_sync_master(snd_seq_t *seq, int queue, snd_seq_addr_t *dest, snd_seq_queue_sync_t *info);
int snd_seq_remove_sync_master(snd_seq_t *seq, int queue, snd_seq_addr_t *dest);
int snd_seq_add_sync_std_master(snd_seq_t *seq, int queue, snd_seq_addr_t *dest, int format, int time_format, unsigned char *opt_info);