hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=e1ac55873e1d9abe8dce2a9a49409513d1ba4d0f
commit e1ac55873e1d9abe8dce2a9a49409513d1ba4d0f Author: ChunEon Park <her...@hermet.pe.kr> Date: Tue Feb 18 20:07:30 2014 +0900 config - just sort up the func position. (static first) --- src/bin/config_data.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/bin/config_data.c b/src/bin/config_data.c index 79d6eec..179a629 100644 --- a/src/bin/config_data.c +++ b/src/bin/config_data.c @@ -109,14 +109,6 @@ config_save(config_data *cd) eet_close(ef); } -void -config_edc_path_set(const char *edc_path) -{ - config_data *cd = g_cd; - eina_stringshare_replace(&cd->edc_path, edc_path); - config_edj_path_update(cd); -} - static config_data * config_load() { @@ -180,8 +172,6 @@ config_load() return cd; } - - static void eddc_init() { @@ -206,6 +196,14 @@ eddc_init() } void +config_edc_path_set(const char *edc_path) +{ + config_data *cd = g_cd; + eina_stringshare_replace(&cd->edc_path, edc_path); + config_edj_path_update(cd); +} + +void config_init(const char *edc_path, const char *edc_img_path, const char *edc_snd_path, const char *edc_fnt_path, const char *edc_data_path) --