Git init
[platform/core/uifw/e17.git] / src / modules / illume-softkey / e_mod_config.h
1 #ifndef E_MOD_CONFIG_H
2 #define E_MOD_CONFIG_H
3
4 #define IL_CONFIG_MIN 0
5 #define IL_CONFIG_MAJ 0
6
7 typedef struct _Il_Sft_Config Il_Sft_Config;
8
9 struct _Il_Sft_Config 
10 {
11    int version, height;
12 };
13
14 int il_sft_config_init(void);
15 int il_sft_config_shutdown(void);
16 int il_sft_config_save(void);
17
18 extern EAPI Il_Sft_Config *il_sft_cfg;
19
20 #endif