2006-06-19 21:53:48 +00:00
|
|
|
#ifndef foopulseaudiohfoo
|
|
|
|
|
#define foopulseaudiohfoo
|
2004-06-23 23:17:30 +00:00
|
|
|
|
2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
|
License, or (at your option) any later version.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2004-11-14 14:58:54 +00:00
|
|
|
Lesser General Public License for more details.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2006-06-19 21:53:48 +00:00
|
|
|
License along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/mainloop-api.h>
|
|
|
|
|
#include <pulse/sample.h>
|
|
|
|
|
#include <pulse/def.h>
|
|
|
|
|
#include <pulse/context.h>
|
|
|
|
|
#include <pulse/stream.h>
|
|
|
|
|
#include <pulse/introspect.h>
|
|
|
|
|
#include <pulse/subscribe.h>
|
|
|
|
|
#include <pulse/scache.h>
|
|
|
|
|
#include <pulse/version.h>
|
|
|
|
|
#include <pulse/error.h>
|
|
|
|
|
#include <pulse/operation.h>
|
|
|
|
|
#include <pulse/channelmap.h>
|
|
|
|
|
#include <pulse/volume.h>
|
|
|
|
|
#include <pulse/xmalloc.h>
|
|
|
|
|
#include <pulse/utf8.h>
|
|
|
|
|
#include <pulse/thread-mainloop.h>
|
|
|
|
|
#include <pulse/mainloop.h>
|
|
|
|
|
#include <pulse/mainloop-signal.h>
|
|
|
|
|
#include <pulse/util.h>
|
|
|
|
|
#include <pulse/timeval.h>
|
2004-08-06 23:07:48 +00:00
|
|
|
|
2004-08-17 17:17:22 +00:00
|
|
|
/** \file
|
2006-06-19 23:00:21 +00:00
|
|
|
* Include all libpulse header files at once. The following
|
2006-02-20 17:09:39 +00:00
|
|
|
* files are included: \ref mainloop-api.h, \ref sample.h, \ref def.h,
|
|
|
|
|
* \ref context.h, \ref stream.h, \ref introspect.h, \ref subscribe.h,
|
|
|
|
|
* \ref scache.h, \ref version.h, \ref error.h, \ref channelmap.h,
|
2006-05-17 19:26:14 +00:00
|
|
|
* \ref operation.h,\ref volume.h, \ref xmalloc.h, \ref utf8.h, \ref
|
2006-05-18 06:45:43 +00:00
|
|
|
* thread-mainloop.h, \ref mainloop.h, \ref util.h, \ref timeval.h and
|
|
|
|
|
* \ref mainloop-signal.h at once */
|
2004-08-17 17:17:22 +00:00
|
|
|
|
|
|
|
|
/** \mainpage
|
|
|
|
|
*
|
|
|
|
|
* \section intro_sec Introduction
|
|
|
|
|
*
|
2006-06-19 23:00:21 +00:00
|
|
|
* This document describes the client API for the PulseAudio sound
|
2006-04-09 19:31:09 +00:00
|
|
|
* server. The API comes in two flavours to accomodate different styles
|
|
|
|
|
* of applications and different needs in complexity:
|
2004-08-17 17:17:22 +00:00
|
|
|
*
|
|
|
|
|
* \li The complete but somewhat complicated to use asynchronous API
|
2006-04-09 19:31:09 +00:00
|
|
|
* \li The simplified, easy to use, but limited synchronous API
|
2004-08-17 17:17:22 +00:00
|
|
|
*
|
2006-06-19 22:11:49 +00:00
|
|
|
* All strings in PulseAudio are in the UTF-8 encoding, regardless of current
|
2006-05-17 11:10:59 +00:00
|
|
|
* locale. Some functions will filter invalid sequences from the string, some
|
|
|
|
|
* will simply fail. To ensure reliable behaviour, make sure everything you
|
|
|
|
|
* pass to the API is already in UTF-8.
|
|
|
|
|
|
2004-08-17 17:17:22 +00:00
|
|
|
* \section simple_sec Simple API
|
|
|
|
|
*
|
|
|
|
|
* Use this if you develop your program in synchronous style and just
|
|
|
|
|
* need a way to play or record data on the sound server. See
|
2006-04-09 19:31:09 +00:00
|
|
|
* \subpage simple for more details.
|
2004-08-17 17:17:22 +00:00
|
|
|
*
|
2006-04-09 19:31:09 +00:00
|
|
|
* \section async_sec Asynchronous API
|
2004-08-17 17:17:22 +00:00
|
|
|
*
|
2006-04-09 19:31:09 +00:00
|
|
|
* Use this if you develop your programs in asynchronous, event loop
|
|
|
|
|
* based style or if you want to use the advanced features of the
|
2006-06-19 23:00:21 +00:00
|
|
|
* PulseAudio API. A guide can be found in \subpage async.
|
2004-08-17 17:17:22 +00:00
|
|
|
*
|
2006-05-17 11:07:16 +00:00
|
|
|
* By using the built-in threaded main loop, it is possible to acheive a
|
|
|
|
|
* pseudo-synchronous API, which can be useful in synchronous applications
|
|
|
|
|
* where the simple API is insufficient. See the \ref async page for
|
|
|
|
|
* details.
|
|
|
|
|
*
|
2006-04-09 19:31:09 +00:00
|
|
|
* \section thread_sec Threads
|
|
|
|
|
*
|
2006-06-19 23:00:21 +00:00
|
|
|
* The PulseAudio client libraries are not designed to be used in a
|
2006-04-09 19:31:09 +00:00
|
|
|
* heavily threaded environment. They are however designed to be reentrant
|
|
|
|
|
* safe.
|
2004-08-17 17:17:22 +00:00
|
|
|
*
|
2006-04-09 19:31:09 +00:00
|
|
|
* To use a the libraries in a threaded environment, you must assure that
|
2006-05-17 11:07:16 +00:00
|
|
|
* all objects are only used in one thread at a time. Normally, this means
|
|
|
|
|
* that all objects belonging to a single context must be accessed from the
|
|
|
|
|
* same thread.
|
2006-04-09 19:31:09 +00:00
|
|
|
*
|
|
|
|
|
* The included main loop implementation is also not thread safe. Take care
|
2006-05-17 11:07:16 +00:00
|
|
|
* to make sure event lists are not manipulated when any other code is
|
2006-04-09 19:31:09 +00:00
|
|
|
* using the main loop.
|
2004-08-17 17:17:22 +00:00
|
|
|
*
|
|
|
|
|
* \section pkgconfig pkg-config
|
|
|
|
|
*
|
2006-06-19 23:00:21 +00:00
|
|
|
* The PulseAudio libraries provide pkg-config snippets for the different
|
2006-04-09 19:31:09 +00:00
|
|
|
* modules:
|
|
|
|
|
*
|
2006-06-19 23:00:21 +00:00
|
|
|
* \li pulselib - The asynchronous API and the internal main loop implementation.
|
|
|
|
|
* \li pulselib-mainloop-glib12 - GLIB 1.2 main loop bindings.
|
|
|
|
|
* \li pulselib-mainloop-glib - GLIB 2.x main loop bindings.
|
|
|
|
|
* \li pulselib-simple - The simple PulseAudio API.
|
2004-08-17 17:17:22 +00:00
|
|
|
*/
|
|
|
|
|
|
2004-06-23 23:17:30 +00:00
|
|
|
#endif
|