mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
added more documents.
removed the obsolete snd_seq_port_subscribe_set_voices().
This commit is contained in:
parent
1583177850
commit
e1ae539931
4 changed files with 466 additions and 37 deletions
|
|
@ -46,13 +46,14 @@ extern "C" {
|
|||
/** Sequencer handle */
|
||||
typedef struct _snd_seq snd_seq_t;
|
||||
|
||||
/** Allocate and initialize array on stack \internal */
|
||||
#ifndef DOC_HIDDEN
|
||||
#define SND_ALLOCA(type,ptr) \
|
||||
do {\
|
||||
assert(ptr);\
|
||||
*ptr = (type##_t *)alloca(type##_sizeof());\
|
||||
memset(*ptr, 0, type##_sizeof());\
|
||||
} while (0)
|
||||
#endif
|
||||
|
||||
/**
|
||||
* sequencer opening stream types
|
||||
|
|
@ -315,7 +316,6 @@ int snd_seq_port_subscribe_get_time_real(const snd_seq_port_subscribe_t *info);
|
|||
void snd_seq_port_subscribe_set_sender(snd_seq_port_subscribe_t *info, const snd_seq_addr_t *addr);
|
||||
void snd_seq_port_subscribe_set_dest(snd_seq_port_subscribe_t *info, const snd_seq_addr_t *addr);
|
||||
void snd_seq_port_subscribe_set_queue(snd_seq_port_subscribe_t *info, int q);
|
||||
void snd_seq_port_subscribe_set_voices(snd_seq_port_subscribe_t *info, unsigned int voices);
|
||||
void snd_seq_port_subscribe_set_exclusive(snd_seq_port_subscribe_t *info, int val);
|
||||
void snd_seq_port_subscribe_set_time_update(snd_seq_port_subscribe_t *info, int val);
|
||||
void snd_seq_port_subscribe_set_time_real(snd_seq_port_subscribe_t *info, int val);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue