diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 2 | ||||
-rw-r--r-- | e-util/e-util-private.h | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 36a2f2f172..c0ee1fac27 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -8,6 +8,8 @@ * e-win32-reloc.c: Handle also the above two paths. + * e-util-private.h: Ditto here. Also EVOLUTION_ETSPECDIR. + 2005-07-11 Vivek Jain <jvivek@novell.com> * e-config.c: (e_config_target_changed): diff --git a/e-util/e-util-private.h b/e-util/e-util-private.h index 407e9d181d..16447a1117 100644 --- a/e-util/e-util-private.h +++ b/e-util/e-util-private.h @@ -31,6 +31,7 @@ const char *_e_get_localedir (void) G_GNUC_CONST; const char *_e_get_gladedir (void) G_GNUC_CONST; const char *_e_get_helpdir (void) G_GNUC_CONST; +const char *_e_get_etspecdir (void) G_GNUC_CONST; const char *_e_get_imagesdir (void) G_GNUC_CONST; const char *_e_get_iconsdir (void) G_GNUC_CONST; const char *_e_get_category_icons (void) G_GNUC_CONST; @@ -38,6 +39,8 @@ const char *_e_get_plugindir (void) G_GNUC_CONST; const char *_e_get_privdatadir (void) G_GNUC_CONST; const char *_e_get_search_rule_dir (void) G_GNUC_CONST; const char *_e_get_galviewsdir (void) G_GNUC_CONST; +const char *_e_get_libexecdir (void) G_GNUC_CONST; +const char *_e_get_sounddir (void) G_GNUC_CONST; #undef EVOLUTION_LOCALEDIR #define EVOLUTION_LOCALEDIR _e_get_localedir () @@ -75,6 +78,12 @@ const char *_e_get_galviewsdir (void) G_GNUC_CONST; #undef EVOLUTION_GALVIEWSDIR #define EVOLUTION_GALVIEWSDIR _e_get_galviewsdir () +#undef EVOLUTION_LIBEXECDIR +#define EVOLUTION_LIBEXECDIR _e_get_libexecdir () + +#undef EVOLUTION_SOUNDDIR +#define EVOLUTION_SOUNDDIR _e_get_sounddir () + #endif /* G_OS_WIN32 */ #endif /* _E_UTIL_PRIVATE_H_ */ |