Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 1.47 KB

mce-modules.h

File metadata and controls

44 lines (37 loc) · 1.47 KB
 
Dec 16, 2010
Dec 16, 2010
1
2
3
4
5
/**
* @file mce-modules.h
* Headers for the module handling for MCE
* <p>
* Copyright © 2007 Nokia Corporation and/or its subsidiary(-ies).
May 17, 2019
May 17, 2019
6
* Copyright (C) 2018-2019 Jolla Ltd.
Dec 16, 2010
Dec 16, 2010
7
8
* <p>
* @author David Weinehall <david.weinehall@nokia.com>
May 17, 2019
May 17, 2019
9
* @author Simo Piiroinen <simo.piiroinen@jollamobile.com>
Dec 16, 2010
Dec 16, 2010
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
*
* 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_MODULES_H_
#define _MCE_MODULES_H_
#include <glib.h>
/** Name of Modules configuration group */
Sep 18, 2018
Sep 18, 2018
29
#define MCE_CONF_MODULES_GROUP "Modules"
Dec 16, 2010
Dec 16, 2010
30
31
/** Name of configuration key for module path */
Sep 18, 2018
Sep 18, 2018
32
#define MCE_CONF_MODULES_PATH "ModulePath"
Dec 16, 2010
Dec 16, 2010
33
34
/** Name of configuration key for modules to load */
Sep 18, 2018
Sep 18, 2018
35
#define MCE_CONF_MODULES_MODULES "Modules"
Dec 16, 2010
Dec 16, 2010
36
37
/** Default value for module path */
Jul 3, 2020
Jul 3, 2020
38
#define DEFAULT_MCE_MODULE_PATH G_STRINGIFY(MCE_DEFAULT_MCE_MODULE_PATH)
Dec 16, 2010
Dec 16, 2010
39
40
41
42
43
44
void mce_modules_dump_info(void);
gboolean mce_modules_init(void);
void mce_modules_exit(void);
#endif /* _MCE_MODULES_H_ */