Big documentation update. Describe the client API in a more tutorial like

manner.


git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@667 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Pierre Ossman 2006-04-09 19:31:09 +00:00
parent a74253606f
commit a6ce5c4b1d
12 changed files with 757 additions and 52 deletions

View file

@ -28,11 +28,22 @@
#include <polyp/context.h>
#include <polyp/cdecl.h>
/** \page subscribe Event subscription
*
* \section overv_sec Overview
*
* The application can be notified, asynchronously, whenever the internal
* layout of the server changes. Possible notifications are desribed in the
* \ref pa_subscription_event_type and \ref pa_subscription_mask
* enumerations.
*
* The application sets the notification mask using pa_context_subscribe()
* and the function that will be called whenever a notification occurs using
* pa_context_set_subscribe_callback().
*/
/** \file
* Daemon introspection event subscription subsystem. Use this
* to be notified whenever the internal layout of daemon changes:
* i.e. entities such as sinks or sources are create, removed or
* modified. */
* Daemon introspection event subscription subsystem. */
PA_C_DECL_BEGIN