Mercurial > hg > svcore
comparison plugin/api/alsa/sound/asequencer.h @ 0:da6937383da8
initial import
author | Chris Cannam |
---|---|
date | Tue, 10 Jan 2006 16:33:16 +0000 |
parents | |
children | 48e9f538e6e9 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:da6937383da8 |
---|---|
1 /* DSSI ALSA compatibility library | |
2 * | |
3 * This library provides for Mac OS X the ALSA snd_seq_event_t handling | |
4 * necessary to compile and run DSSI. It was extracted from alsa-lib 1.0.8. | |
5 */ | |
6 | |
7 /* | |
8 * Main header file for the ALSA sequencer | |
9 * Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl> | |
10 * (c) 1998-1999 by Jaroslav Kysela <perex@suse.cz> | |
11 * | |
12 * | |
13 * This program is free software; you can redistribute it and/or modify | |
14 * it under the terms of the GNU General Public License as published by | |
15 * the Free Software Foundation; either version 2 of the License, or | |
16 * (at your option) any later version. | |
17 * | |
18 * This program is distributed in the hope that it will be useful, | |
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 * GNU General Public License for more details. | |
22 * | |
23 * You should have received a copy of the GNU General Public License | |
24 * along with this program; if not, write to the Free Software | |
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
26 * | |
27 */ | |
28 #ifndef __SOUND_ASEQUENCER_H | |
29 #define __SOUND_ASEQUENCER_H | |
30 | |
31 #define SNDRV_SEQ_EVENT_SYSEX 130 /* system exclusive data (variable length) */ | |
32 | |
33 #define SNDRV_SEQ_EVENT_LENGTH_FIXED (0<<2) /* fixed event size */ | |
34 #define SNDRV_SEQ_EVENT_LENGTH_VARIABLE (1<<2) /* variable event size */ | |
35 | |
36 #define SNDRV_SEQ_EVENT_LENGTH_MASK (3<<2) | |
37 | |
38 #endif /* __SOUND_ASEQUENCER_H */ |