]> git.mxchange.org Git - flightgear.git/blob - 3rdparty/iaxclient/lib/audio_portaudio.h
VS2015 compatability fixes.
[flightgear.git] / 3rdparty / iaxclient / lib / audio_portaudio.h
1 /*
2  * iaxclient: a cross-platform IAX softphone library
3  *
4  * Copyrights:
5  * Copyright (C) 2003-2006, Horizon Wimba, Inc.
6  * Copyright (C) 2007, Wimba, Inc.
7  *
8  * Contributors:
9  * Steve Kann <stevek@stevek.com>
10  *
11  * This program is free software, distributed under the terms of
12  * the GNU Lesser (Library) General Public License.
13  */
14
15 #ifndef _AUDIO_PORTAUDIO_H
16 #define _AUDIO_PORTAUDIO_H
17
18 #include "iaxclient_lib.h"
19
20 /* normal initialization */
21 int pa_initialize (struct iaxc_audio_driver *d, int sr);
22
23 /* faster initialization which defers initialization of mixers and levels
24         until the device is started */
25 int pa_initialize_deferred (struct iaxc_audio_driver *d, int sr);
26
27 #endif