aboutsummaryrefslogtreecommitdiff
path: root/include/seq.h
diff options
context:
space:
mode:
authorJaroslav Kysela <perex@perex.cz>2002-04-17 08:50:56 +0000
committerJaroslav Kysela <perex@perex.cz>2002-04-17 08:50:56 +0000
commitfb07cd28e52b168f8d0433aa8ca8e4917c87fcfa (patch)
tree16ae826f23edec45d7701aac26211619d26f39e5 /include/seq.h
parent6746dabeb17a4c43a87e49fcdbe9c3fc81397b1c (diff)
Removed IPC code from sequencer code
Diffstat (limited to 'include/seq.h')
-rw-r--r--include/seq.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/seq.h b/include/seq.h
index 7ab7d7fe..3079276a 100644
--- a/include/seq.h
+++ b/include/seq.h
@@ -586,8 +586,7 @@ enum {
SND_SEQ_EVFLG_RAW,
SND_SEQ_EVFLG_FIXED,
SND_SEQ_EVFLG_VARIABLE,
- SND_SEQ_EVFLG_VARUSR,
- SND_SEQ_EVFLG_IPC
+ SND_SEQ_EVFLG_VARUSR
};
enum {
@@ -655,9 +654,6 @@ extern const unsigned int snd_seq_event_types[];
/** event type check: user pointer events */
#define snd_seq_ev_is_varusr_type(ev) \
snd_seq_type_check(ev, SND_SEQ_EVFLG_VARUSR)
-/** event type check: ipc events */
-#define snd_seq_ev_is_varipc_type(ev) \
- snd_seq_type_check(ev, SND_SEQ_EVFLG_IPC)
/** event type check: reserved for kernel */
#define snd_seq_ev_is_reserved(ev) \
(! snd_seq_event_types[(ev)->type])
@@ -681,9 +677,6 @@ extern const unsigned int snd_seq_event_types[];
/** variable length on user-space */
#define snd_seq_ev_is_varusr(ev) \
(snd_seq_ev_length_type(ev) == SND_SEQ_EVENT_LENGTH_VARUSR)
-/** variable length on IPC shm */
-#define snd_seq_ev_is_varipc(ev) \
- (snd_seq_ev_length_type(ev) == SND_SEQ_EVENT_LENGTH_VARIPC)
/** time-stamp type */
#define snd_seq_ev_timestamp_type(ev) \