Chris@4: #ifndef PA_JACK_H Chris@4: #define PA_JACK_H Chris@4: Chris@4: /* Chris@4: * $Id: Chris@4: * PortAudio Portable Real-Time Audio Library Chris@4: * JACK-specific extensions Chris@4: * Chris@4: * Copyright (c) 1999-2000 Ross Bencina and Phil Burk Chris@4: * Chris@4: * Permission is hereby granted, free of charge, to any person obtaining Chris@4: * a copy of this software and associated documentation files Chris@4: * (the "Software"), to deal in the Software without restriction, Chris@4: * including without limitation the rights to use, copy, modify, merge, Chris@4: * publish, distribute, sublicense, and/or sell copies of the Software, Chris@4: * and to permit persons to whom the Software is furnished to do so, Chris@4: * subject to the following conditions: Chris@4: * Chris@4: * The above copyright notice and this permission notice shall be Chris@4: * included in all copies or substantial portions of the Software. Chris@4: * Chris@4: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, Chris@4: * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF Chris@4: * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. Chris@4: * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR Chris@4: * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF Chris@4: * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION Chris@4: * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Chris@4: */ Chris@4: Chris@4: /* Chris@4: * The text above constitutes the entire PortAudio license; however, Chris@4: * the PortAudio community also makes the following non-binding requests: Chris@4: * Chris@4: * Any person wishing to distribute modifications to the Software is Chris@4: * requested to send the modifications to the original developer so that Chris@4: * they can be incorporated into the canonical version. It is also Chris@4: * requested that these non-binding requests be included along with the Chris@4: * license above. Chris@4: */ Chris@4: Chris@4: /** @file Chris@4: * @ingroup public_header Chris@4: * @brief JACK-specific PortAudio API extension header file. Chris@4: */ Chris@4: Chris@4: #include "portaudio.h" Chris@4: Chris@4: #ifdef __cplusplus Chris@4: extern "C" { Chris@4: #endif Chris@4: Chris@4: /** Set the JACK client name. Chris@4: * Chris@4: * During Pa_Initialize, When PA JACK connects as a client of the JACK server, it requests a certain Chris@4: * name, which is for instance prepended to port names. By default this name is "PortAudio". The Chris@4: * JACK server may append a suffix to the client name, in order to avoid clashes among clients that Chris@4: * try to connect with the same name (e.g., different PA JACK clients). Chris@4: * Chris@4: * This function must be called before Pa_Initialize, otherwise it won't have any effect. Note that Chris@4: * the string is not copied, but instead referenced directly, so it must not be freed for as long as Chris@4: * PA might need it. Chris@4: * @sa PaJack_GetClientName Chris@4: */ Chris@4: PaError PaJack_SetClientName( const char* name ); Chris@4: Chris@4: /** Get the JACK client name used by PA JACK. Chris@4: * Chris@4: * The caller is responsible for freeing the returned pointer. Chris@4: */ Chris@4: PaError PaJack_GetClientName(const char** clientName); Chris@4: Chris@4: #ifdef __cplusplus Chris@4: } Chris@4: #endif Chris@4: Chris@4: #endif