daemon: Fix #33
[ladish.git] / studio_proxy.h
blob1dc3002df0c118a1eeb5b585c0e34e51aab7eea7
1 /* -*- Mode: C ; c-basic-offset: 2 -*- */
2 /*
3 * LADI Session Handler (ladish)
5 * Copyright (C) 2009 Nedko Arnaudov <nedko@arnaudov.name>
7 **************************************************************************
8 * This file contains interface to the helper functionality for accessing
9 * Studio object through D-Bus
10 **************************************************************************
12 * LADI Session Handler is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * LADI Session Handler is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with LADI Session Handler. If not, see <http://www.gnu.org/licenses/>
24 * or write to the Free Software Foundation, Inc.,
25 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
28 #ifndef STUDIO_PROXY_H__2CEC623F_C998_4618_A947_D1A0016DF978__INCLUDED
29 #define STUDIO_PROXY_H__2CEC623F_C998_4618_A947_D1A0016DF978__INCLUDED
31 bool studio_proxy_init(void);
32 void studio_proxy_uninit(void);
33 bool studio_proxy_get_name(char ** name);
34 bool studio_proxy_rename(const char * name);
35 bool studio_proxy_save(void);
36 bool studio_proxy_unload(void);
37 void studio_proxy_set_renamed_callback(void (* callback)(const char * new_studio_name));
39 void studio_proxy_set_startstop_callbacks(void (* started_callback)(void), void (* stopped_callback)(void));
40 bool studio_proxy_start(void);
41 bool studio_proxy_stop(void);
43 #endif /* #ifndef STUDIO_PROXY_H__2CEC623F_C998_4618_A947_D1A0016DF978__INCLUDED */