forked from nemomobile/mce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmce-conf.h
45 lines (40 loc) · 1.64 KB
/
mce-conf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* @file mce-conf.h
* Headers for the configuration option handling for MCE
* <p>
* Copyright © 2006-2007 Nokia Corporation and/or its subsidiary(-ies).
* <p>
* @author David Weinehall <[email protected]>
*
* mce is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* mce is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with mce. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _MCE_CONF_H_
#define _MCE_CONF_H_
#include <glib.h>
gboolean mce_conf_get_bool(const gchar *group, const gchar *key,
const gboolean defaultval);
gint mce_conf_get_int(const gchar *group, const gchar *key,
const gint defaultval);
gint *mce_conf_get_int_list(const gchar *group, const gchar *key,
gsize *length);
gchar *mce_conf_get_string(const gchar *group, const gchar *key,
const gchar *defaultval);
gchar **mce_conf_get_string_list(const gchar *group, const gchar *key,
gsize *length);
gchar **mce_conf_get_keys(const gchar *group, gsize *length);
gboolean mce_conf_init(void);
void mce_conf_exit(void);
const gchar * const *mce_conf_get_touchscreen_event_drivers(void);
const gchar * const *mce_conf_get_keyboard_event_drivers(void);
const gchar * const *mce_conf_get_blacklisted_event_drivers(void);
#endif /* _MCE_CONF_H_ */