cache update is a generic event

SVN revision: 54783
This commit is contained in:
Sebastian Dransfeld 2010-11-22 14:15:59 +00:00
parent 537f3fd258
commit 04d52dcd86
2 changed files with 14 additions and 14 deletions

View File

@ -18,6 +18,20 @@ EAPI Eina_List *efreet_config_dirs_get(void);
EAPI const char *efreet_cache_home_get(void);
/**
* Efreet_Event_Cache_Update
*/
typedef struct _Efreet_Event_Cache_Update Efreet_Event_Cache_Update;
/**
* Efreet_Event_Cache_Update
* @brief event struct sent with EFREET_EVENT_*_CACHE_UPDATE
*/
struct _Efreet_Event_Cache_Update
{
int dummy;
};
/**
* @}
*/

View File

@ -27,11 +27,6 @@ EAPI extern int EFREET_EVENT_DESKTOP_CACHE_UPDATE;
*/
typedef struct _Efreet_Desktop Efreet_Desktop;
/**
* Efreet_Event_Cache_Update
*/
typedef struct _Efreet_Event_Cache_Update Efreet_Event_Cache_Update;
/**
* A callback used with efreet_desktop_command_get()
*/
@ -103,15 +98,6 @@ struct _Efreet_Desktop
void *type_data; /**< Type specific data for custom types */
};
/**
* Efreet_Event_Cache_Update
* @brief event struct sent with EFREET_EVENT_CACHE_UPDATE
*/
struct _Efreet_Event_Cache_Update
{
int dummy;
};
EAPI Efreet_Desktop *efreet_desktop_get(const char *file);
EAPI int efreet_desktop_ref(Efreet_Desktop *desktop);
EAPI Efreet_Desktop *efreet_desktop_empty_new(const char *file);