The problem that e17 couldn't move/resize window when the window fetch the rotation...
[platform/core/uifw/e17.git] / src / bin / e_msgbus.h
1 #ifdef E_TYPEDEFS
2
3 typedef struct _E_Msgbus_Data E_Msgbus_Data;
4
5 #else
6 #ifndef E_MSGBUS_H
7 #define E_MSGBUS_H
8
9 /* This is the dbus subsystem, but e_dbus namespace is taken by e_dbus */
10
11 struct _E_Msgbus_Data
12 {
13    E_DBus_Connection *conn;
14    E_DBus_Object     *obj;
15 };
16
17 EINTERN int e_msgbus_init(void);
18 EINTERN int e_msgbus_shutdown(void);
19 EAPI void e_msgbus_interface_attach(E_DBus_Interface *iface);
20 EAPI void e_msgbus_interface_detach(E_DBus_Interface *iface);
21
22 #endif
23 #endif