First submission of renderer-service-upnp
[profile/ivi/renderer-service-upnp.git] / src / settings.h
1 /*
2  * renderer-service-upnp
3  *
4  * Copyright (C) 2012 Intel Corporation. All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms and conditions of the GNU Lesser General Public License,
8  * version 2.1, as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
13  * for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Ludovic Ferrandis <ludovic.ferrandis@intel.com>
20  *
21  */
22
23 #ifndef RSU_SETTINGS_H__
24 #define RSU_SETTINGS_H__
25
26 #include <glib.h>
27 #include <gio/gio.h>
28
29 #include "log.h"
30
31 typedef struct rsu_settings_context_t_ rsu_settings_context_t;
32
33 void rsu_settings_new(rsu_settings_context_t **settings);
34 void rsu_settings_delete(rsu_settings_context_t *settings);
35
36 gboolean rsu_settings_is_never_quit(rsu_settings_context_t *settings);
37
38 #endif /* RSU_SETTINGS_H__ */