Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / i386 / gnu / isa / sound / awe_version.h
1 /*
2  * sound/awe_version.h
3  *
4  * Version defines for the AWE32/Sound Blaster 32 wave table synth driver.
5  *   version 0.4.2c; Oct. 7, 1997
6  *
7  * Copyright (C) 1996,1997 Takashi Iwai
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 /* AWE32 driver version number */
25
26 #ifndef AWE_VERSION_H_DEF
27 #define AWE_VERSION_H_DEF
28
29 #define AWE_VERSION_NUMBER      0x00040203
30 #define AWEDRV_VERSION          "0.4.2c"
31 #define AWE_MAJOR_VERSION(id)   (((id) >> 16) & 0xff)
32 #define AWE_MINOR_VERSION(id)   (((id) >> 8) & 0xff)
33 #define AWE_TINY_VERSION(id)    ((id) & 0xff)
34
35 #endif