|
PulseAudio
9.0
|
00001 #ifndef foooperationhfoo 00002 #define foooperationhfoo 00003 00004 /*** 00005 This file is part of PulseAudio. 00006 00007 Copyright 2004-2006 Lennart Poettering 00008 00009 PulseAudio is free software; you can redistribute it and/or modify 00010 it under the terms of the GNU Lesser General Public License as published 00011 by the Free Software Foundation; either version 2.1 of the License, 00012 or (at your option) any later version. 00013 00014 PulseAudio is distributed in the hope that it will be useful, but 00015 WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 General Public License for more details. 00018 00019 You should have received a copy of the GNU Lesser General Public License 00020 along with PulseAudio; if not, see <http://www.gnu.org/licenses/>. 00021 ***/ 00022 00023 #include <pulse/cdecl.h> 00024 #include <pulse/def.h> 00025 #include <pulse/version.h> 00026 00030 PA_C_DECL_BEGIN 00031 00033 typedef struct pa_operation pa_operation; 00034 00036 typedef void (*pa_operation_notify_cb_t) (pa_operation *o, void *userdata); 00037 00039 pa_operation *pa_operation_ref(pa_operation *o); 00040 00042 void pa_operation_unref(pa_operation *o); 00043 00049 void pa_operation_cancel(pa_operation *o); 00050 00052 pa_operation_state_t pa_operation_get_state(pa_operation *o); 00053 00060 void pa_operation_set_state_callback(pa_operation *o, pa_operation_notify_cb_t cb, void *userdata); 00061 00062 PA_C_DECL_END 00063 00064 #endif