#ifdef E_TYPEDEFS #define E_MODULE_API_VERSION 25 typedef struct _E_Module E_Module; typedef struct _E_Module_Api E_Module_Api; typedef struct _E_Event_Module_Update E_Event_Module_Update; typedef struct E_Module_Desktop E_Module_Desktop; #else #ifndef E_MODULE_H #define E_MODULE_H #define E_MODULE_TYPE 0xE0b0100b extern E_API int E_EVENT_MODULE_UPDATE; extern E_API int E_EVENT_MODULE_INIT_END; struct _E_Event_Module_Update { const char *name; Eina_Bool enabled E_BITFIELD; }; struct _E_Module { E_Object e_obj_inherit; E_Module_Api *api; Eina_Stringshare *name; Eina_Stringshare *file; Eina_Stringshare *dir; void *handle; struct { void * (*init) (E_Module *m); int (*shutdown) (E_Module *m); int (*save) (E_Module *m); } func; Eina_Bool enabled E_BITFIELD; Eina_Bool error E_BITFIELD; /* the module is allowed to modify these */ void *data; }; struct E_Module_Desktop { Eina_Stringshare *dir; Efreet_Desktop *desktop; }; struct _E_Module_Api { int version; const char *name; }; EINTERN int e_module_init(void); EINTERN int e_module_shutdown(void); E_API void e_module_all_load(void); E_API E_Module *e_module_new(const char *name); E_API int e_module_save(E_Module *m); E_API const char *e_module_dir_get(E_Module *m); E_API int e_module_enable(E_Module *m); E_API int e_module_disable(E_Module *m); E_API int e_module_enabled_get(E_Module *m); E_API int e_module_save_all(void); E_API E_Module *e_module_find(const char *name); E_API Eina_List *e_module_list(void); E_API Eina_List *e_module_desktop_list(void); E_API void e_module_desktop_free(E_Module_Desktop *md); E_API void e_module_dialog_show(E_Module *m, const char *title, const char *body); E_API Eina_Bool e_module_loading_get(void); #endif #endif