Fixed some RPMlint errors - group name, duplicate files, etc.
[profile/ivi/ico-uxf-homescreen.git] / include / ico_uxf_conf_common.h
1 /*
2  * Copyright (c) 2013, TOYOTA MOTOR CORPORATION.
3  *
4  * This program is licensed under the terms and conditions of the
5  * Apache License, version 2.0.  The full text of the Apache License is at
6  * http://www.apache.org/licenses/LICENSE-2.0
7  *
8  */
9 /**
10  * @brief   user experiance library public header file(configuration)
11  *
12  * @date    Feb-28-2013
13  */
14
15 #ifndef ICO_UXF_CONF_COMMON_H_
16 #define ICO_UXF_CONF_COMMON_H_
17
18 #include <glib.h>
19
20 #include "ico_uxf_sysdef.h"
21 #include "ico_uxf_def.h"
22 #include "ico_uxf_conf.h"
23 #include "ico_apf_log.h"
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 /* Prototyypes of configuration functions           */
30 int ico_uxf_conf_getUint(const char* str);
31 GList* ico_uxf_conf_countNumericalKey(GKeyFile *keyfile, const char* group);
32 const char* ico_uxf_conf_appendStr(const char* str1, const char* str2);
33 void ico_uxf_conf_checkGerror(GError** error);
34
35 #ifdef __cplusplus
36 }
37 #endif
38 #endif /* ICO_UXF_CONF_COMMON_H_ */
39