| 1 | /* $Id: sbvsd.h,v 1.1 2000/04/23 14:55:27 ktk Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | //******************************************************************************
|
|---|
| 4 | // Header with hardware ID definitions
|
|---|
| 5 | //
|
|---|
| 6 | // Copyright 2000 Sander van Leeuwen (sandervl@xs4all.nl)
|
|---|
| 7 | //
|
|---|
| 8 | // This program is free software; you can redistribute it and/or
|
|---|
| 9 | // modify it under the terms of the GNU General Public License as
|
|---|
| 10 | // published by the Free Software Foundation; either version 2 of
|
|---|
| 11 | // the License, or (at your option) any later version.
|
|---|
| 12 | //
|
|---|
| 13 | // This program is distributed in the hope that it will be useful,
|
|---|
| 14 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 16 | // GNU General Public License for more details.
|
|---|
| 17 | //
|
|---|
| 18 | // You should have received a copy of the GNU General Public
|
|---|
| 19 | // License along with this program; if not, write to the Free
|
|---|
| 20 | // Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
|
|---|
| 21 | // USA.
|
|---|
| 22 | //
|
|---|
| 23 | //******************************************************************************
|
|---|
| 24 | #ifndef __SBVSD_H__
|
|---|
| 25 | #define __SBVSD_H__
|
|---|
| 26 |
|
|---|
| 27 | // known cards, others can be added via an .rc file
|
|---|
| 28 |
|
|---|
| 29 | #define MAUDIO 1
|
|---|
| 30 | #define SB 2
|
|---|
| 31 | #define SB_PRO 3
|
|---|
| 32 | #define SB_16 4
|
|---|
| 33 | #define PAS_16 5
|
|---|
| 34 | #define FOXGLOVE 6
|
|---|
| 35 | #define SPEAKER 7
|
|---|
| 36 | #define ULTRASND 66
|
|---|
| 37 | #define SB_LIVE 77
|
|---|
| 38 | #define SB_LIVE_ID "77"
|
|---|
| 39 | #define CMI_8738 78
|
|---|
| 40 | #define CMI_8738_ID "78"
|
|---|
| 41 |
|
|---|
| 42 | /*
|
|---|
| 43 | // values for RC file
|
|---|
| 44 | #define STATIC_RATE 0L
|
|---|
| 45 | #define BEGIN_CONTINUOUS 1L
|
|---|
| 46 | #define END_CONTINUOUS 2L
|
|---|
| 47 | */
|
|---|
| 48 |
|
|---|
| 49 | // Classes used for resource management
|
|---|
| 50 | #define WAVE_PLAYBACK_CLASS 1
|
|---|
| 51 | #define WAVE_RECORD_CLASS 2
|
|---|
| 52 | #define MIDI_PLAYBACK_CLASS 3
|
|---|
| 53 | #define MIDI_RECORD_CLASS 4
|
|---|
| 54 |
|
|---|
| 55 |
|
|---|
| 56 | #endif //__SBVSD_H__
|
|---|
| 57 |
|
|---|