PulseAudio  4.0-186-ga89ca
context.h
Go to the documentation of this file.
1 #ifndef foocontexthfoo
2 #define foocontexthfoo
3 
4 /***
5  This file is part of PulseAudio.
6 
7  Copyright 2004-2006 Lennart Poettering
8  Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
9 
10  PulseAudio is free software; you can redistribute it and/or modify
11  it under the terms of the GNU Lesser General Public License as published
12  by the Free Software Foundation; either version 2.1 of the License,
13  or (at your option) any later version.
14 
15  PulseAudio is distributed in the hope that it will be useful, but
16  WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  General Public License for more details.
19 
20  You should have received a copy of the GNU Lesser General Public License
21  along with PulseAudio; if not, write to the Free Software
22  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23  USA.
24 ***/
25 
26 #include <pulse/sample.h>
27 #include <pulse/def.h>
28 #include <pulse/mainloop-api.h>
29 #include <pulse/cdecl.h>
30 #include <pulse/operation.h>
31 #include <pulse/proplist.h>
32 #include <pulse/version.h>
33 
153 PA_C_DECL_BEGIN
154 
156 typedef struct pa_context pa_context;
157 
159 typedef void (*pa_context_notify_cb_t)(pa_context *c, void *userdata);
160 
162 typedef void (*pa_context_success_cb_t) (pa_context *c, int success, void *userdata);
163 
169 typedef void (*pa_context_event_cb_t)(pa_context *c, const char *name, pa_proplist *p, void *userdata);
170 
174 pa_context *pa_context_new(pa_mainloop_api *mainloop, const char *name);
175 
179 pa_context *pa_context_new_with_proplist(pa_mainloop_api *mainloop, const char *name, pa_proplist *proplist);
180 
183 
186 
189 
193 
196 
199 
202 
211 int pa_context_connect(pa_context *c, const char *server, pa_context_flags_t flags, const pa_spawn_api *api);
212 
215 
218 
223 
225 pa_operation* pa_context_set_default_sink(pa_context *c, const char *name, pa_context_success_cb_t cb, void *userdata);
226 
228 pa_operation* pa_context_set_default_source(pa_context *c, const char *name, pa_context_success_cb_t cb, void *userdata);
229 
232 
234 pa_operation* pa_context_set_name(pa_context *c, const char *name, pa_context_success_cb_t cb, void *userdata);
235 
237 const char* pa_context_get_server(pa_context *c);
238 
241 
244 
251 
253 pa_operation *pa_context_proplist_remove(pa_context *c, const char *const keys[], pa_context_success_cb_t cb, void *userdata);
254 
258 uint32_t pa_context_get_index(pa_context *s);
259 
263 
267 
282 
289 int pa_context_load_cookie_from_file(pa_context *c, const char *cookie_file_path);
290 
291 PA_C_DECL_END
292 
293 #endif