aboutsummaryrefslogtreecommitdiff
path: root/include/seq.h
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2003-10-22 14:25:55 +0000
committerTakashi Iwai <tiwai@suse.de>2003-10-22 14:25:55 +0000
commite1ae539931d51a99747813f9271dd800d00ea6fd (patch)
tree5cddca1aeab0fad48f3ba5e4b8f9afd0a1a450d4 /include/seq.h
parent15831778500fda0210beaa7ee6cddf067d09f988 (diff)
added more documents.
removed the obsolete snd_seq_port_subscribe_set_voices().
Diffstat (limited to 'include/seq.h')
-rw-r--r--include/seq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/seq.h b/include/seq.h
index a5dda5c3..f46aa867 100644
--- a/include/seq.h
+++ b/include/seq.h
@@ -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);