You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
634 B
27 lines
634 B
#ifndef E_MOD_MAIN_H |
|
#define E_MOD_MAIN_H |
|
|
|
#include "e.h" |
|
|
|
/* sub-module initializers */ |
|
void msgbus_lang_init(Eina_Array *ifaces); |
|
void msgbus_desktop_init(Eina_Array *ifaces); |
|
void msgbus_audit_init(Eina_Array *ifaces); |
|
void msgbus_module_init(Eina_Array *ifaces); |
|
void msgbus_profile_init(Eina_Array *ifaces); |
|
void msgbus_window_init(Eina_Array *ifaces); |
|
|
|
/** |
|
* @addtogroup Optional_Control |
|
* @{ |
|
* |
|
* @defgroup Module_Msgbus MsgBus (DBus Remote Control) |
|
* |
|
* Allows Enlightenment to be controlled by DBus IPC (Inter Process |
|
* Communication) protocol. |
|
* |
|
* @see http://www.freedesktop.org/wiki/Software/dbus |
|
* @} |
|
*/ |
|
|
|
#endif
|
|
|