]> git.mxchange.org Git - flightgear.git/blob - utils/iaxclient/lib/portaudio/src/os/unix/pa_unix_hostapis.c
Fix Windows warning during Windows compilation
[flightgear.git] / utils / iaxclient / lib / portaudio / src / os / unix / pa_unix_hostapis.c
1 /*
2  * $Id: pa_unix_hostapis.c,v 1.1 2006/06/10 21:30:56 dmazzoni Exp $
3  * Portable Audio I/O Library UNIX initialization table
4  *
5  * Based on the Open Source API proposed by Ross Bencina
6  * Copyright (c) 1999-2002 Ross Bencina, Phil Burk
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining
9  * a copy of this software and associated documentation files
10  * (the "Software"), to deal in the Software without restriction,
11  * including without limitation the rights to use, copy, modify, merge,
12  * publish, distribute, sublicense, and/or sell copies of the Software,
13  * and to permit persons to whom the Software is furnished to do so,
14  * subject to the following conditions:
15  *
16  * The above copyright notice and this permission notice shall be
17  * included in all copies or substantial portions of the Software.
18  *
19  * Any person wishing to distribute modifications to the Software is
20  * requested to send the modifications to the original developer so that
21  * they can be incorporated into the canonical version.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
26  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
27  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
28  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30  */
31
32
33 #include "pa_hostapi.h"
34
35 PaError PaJack_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
36 PaError PaAlsa_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
37 PaError PaOSS_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
38 /* Added for IRIX, Pieter, oct 2, 2003: */
39 PaError PaSGI_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
40
41
42 PaUtilHostApiInitializer *paHostApiInitializers[] =
43     {
44 #ifdef PA_USE_OSS
45         PaOSS_Initialize,
46 #endif
47
48 #ifdef PA_USE_ALSA
49         PaAlsa_Initialize,
50 #endif
51
52 #ifdef PA_USE_JACK
53         PaJack_Initialize,
54 #endif
55                     /* Added for IRIX, Pieter, oct 2, 2003: */
56 #ifdef PA_USE_SGI 
57         PaSGI_Initialize,
58 #endif
59         0   /* NULL terminated array */
60     };
61
62 int paDefaultHostApiIndex = 0;
63
64