add conf2 utility functions to get current themes

SVN revision: 82720
This commit is contained in:
Mike Blumenkrantz 2013-01-13 12:20:53 +00:00
parent ec6f8a06b0
commit 1e0d4e857c
2 changed files with 15 additions and 0 deletions

View File

@ -2835,3 +2835,15 @@ e_configure_option_domain_clear(const char *domain)
EINA_SAFETY_ON_NULL_RETURN(domain);
eina_hash_del_by_key(domain_hash, domain);
}
EAPI const Eina_List *
e_configure_option_util_themes_get(void)
{
return themes;
}
EAPI const Eina_List *
e_configure_option_util_themes_system_get(void)
{
return sthemes;
}

View File

@ -165,6 +165,9 @@ EAPI void e_configure_option_domain_current_set(const char *domain);
EAPI Eina_Inlist *e_configure_option_domain_list(const char *domain);
EAPI void e_configure_option_domain_clear(const char *domain);
EAPI const Eina_List *e_configure_option_util_themes_get(void);
EAPI const Eina_List *e_configure_option_util_themes_system_get(void);
EINTERN int e_configure_option_init(void);
EINTERN int e_configure_option_shutdown(void);
# endif