cannam@89
|
1 README for PABLIO
|
cannam@89
|
2 Portable Audio Blocking I/O Library
|
cannam@89
|
3 Author: Phil Burk
|
cannam@89
|
4
|
cannam@89
|
5 PABLIO is a simplified interface to PortAudio that provide
|
cannam@89
|
6 read/write style blocking I/O.
|
cannam@89
|
7
|
cannam@89
|
8 Please see the .DOC file for documentation.
|
cannam@89
|
9
|
cannam@89
|
10 /*
|
cannam@89
|
11 * More information on PortAudio at: http://www.portaudio.com
|
cannam@89
|
12 * Copyright (c) 1999-2000 Phil Burk
|
cannam@89
|
13 *
|
cannam@89
|
14 * Permission is hereby granted, free of charge, to any person obtaining
|
cannam@89
|
15 * a copy of this software and associated documentation files
|
cannam@89
|
16 * (the "Software"), to deal in the Software without restriction,
|
cannam@89
|
17 * including without limitation the rights to use, copy, modify, merge,
|
cannam@89
|
18 * publish, distribute, sublicense, and/or sell copies of the Software,
|
cannam@89
|
19 * and to permit persons to whom the Software is furnished to do so,
|
cannam@89
|
20 * subject to the following conditions:
|
cannam@89
|
21 *
|
cannam@89
|
22 * The above copyright notice and this permission notice shall be
|
cannam@89
|
23 * included in all copies or substantial portions of the Software.
|
cannam@89
|
24 *
|
cannam@89
|
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
cannam@89
|
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
cannam@89
|
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
cannam@89
|
28 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
cannam@89
|
29 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
cannam@89
|
30 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
cannam@89
|
31 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
cannam@89
|
32 */
|
cannam@89
|
33
|
cannam@89
|
34 /*
|
cannam@89
|
35 * The text above constitutes the entire PortAudio license; however,
|
cannam@89
|
36 * the PortAudio community also makes the following non-binding requests:
|
cannam@89
|
37 *
|
cannam@89
|
38 * Any person wishing to distribute modifications to the Software is
|
cannam@89
|
39 * requested to send the modifications to the original developer so that
|
cannam@89
|
40 * they can be incorporated into the canonical version. It is also
|
cannam@89
|
41 * requested that these non-binding requests be included along with the
|
cannam@89
|
42 * license above.
|
cannam@89
|
43 */
|
cannam@89
|
44
|
cannam@89
|
45
|