Fixed some RPMlint errors - group name, duplicate files, etc.
[profile/ivi/ico-uxf-homescreen.git] / include / ico_uxf_conf_def.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_DEF_H_
16 #define ICO_UXF_CONF_DEF_H_
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 /* Environment variable for UI-FW top directory             */
23 #define ICO_UXF_TOP_ENV         "UIFW_TOPDIR"
24
25 /* Default top directory of UI-FW                           */
26 #define ICO_UXF_TOP_TOPDIR      "/usr/apps/org.tizen.ico.homescreen"
27
28 /* Environment variable for top directory of cconfiguration files   */
29 #define ICO_UXF_CONFIG_ENV      "UIFW_CONFDIR"
30
31 /* Default top directory of cconfiguration files            */
32 #define ICO_UXF_CONFIG_DIR      "res/config"
33
34 /* Configuration file names                                 */
35 #define ICO_UXF_CONFIG_SYSTEM   "system.conf"
36 #define ICO_UXF_CONFIG_APPATTR  "app_attr.conf"
37
38 /* Directory of application manifest                        */
39 #define ICO_UXF_CONFIG_APPSDIR  "apps"
40
41 /* Maximum length of the configuration directory name       */
42 #define ICO_UXF_CONF_DIR_MAX    63
43
44 /* Maximum length of Wayland connection name                */
45 #define ICO_UXF_CONF_WAYLAND_NAME   39
46
47 #ifdef __cplusplus
48 }
49 #endif
50 #endif /* ICO_UXF_CONF_DEF_H_ */
51