E_DBus.h | E_DBus.h | |||
---|---|---|---|---|
skipping to change at line 68 | skipping to change at line 68 | |||
* @section edbus_modules_sec Modules | * @section edbus_modules_sec Modules | |||
* | * | |||
* @li @ref EDbus_Group Wrapper around the dbus library, which | * @li @ref EDbus_Group Wrapper around the dbus library, which | |||
* implementent an inter-process communication (IPC) system for | * implementent an inter-process communication (IPC) system for | |||
* software applications to communicate with one another. | * software applications to communicate with one another. | |||
* @li @ref EBluez_Group Implementation of the <a | * @li @ref EBluez_Group Implementation of the <a | |||
* href="http://www.bluez.org/">BlueZ</a> specifications, for wireless | * href="http://www.bluez.org/">BlueZ</a> specifications, for wireless | |||
* communications with Bleutooth devices. | * communications with Bleutooth devices. | |||
* @li @ref EConnman_Group Implementation of the <a | * @li @ref EConnman_Group Implementation of the <a | |||
* href="http://connman.net/">connman</a> specifications, which | * href="http://connman.net/">connman</a> specifications, which | |||
* manages internet connections within embedded devices running the | * manages internet connections running the Linux operating system. | |||
* Linux operating system. | ||||
* @li @ref EHal_Group Implementation of the <a | * @li @ref EHal_Group Implementation of the <a | |||
* href="http://www.freedesktop.org/wiki/Software/hal">HAL</a> | * href="http://www.freedesktop.org/wiki/Software/hal">HAL</a> | |||
* specifications, which is a (software) layer between the hardware | * specifications, which is a (software) layer between the hardware | |||
* devices of a computer and the softwares that run on that | * devices of a computer and the softwares that run on that | |||
* computer (Hardware Abstraction Layer). HAL is deprecated, in favor | * computer (Hardware Abstraction Layer). HAL is deprecated, in favor | |||
* of DeviceKit. | * of DeviceKit. | |||
* @li @ref ENotify_Group To de described. | * @li @ref ENotify_Group To de described. | |||
* @li @ref EOfono_Group Implementation of the <a | * @li @ref EOfono_Group Implementation of the <a | |||
* href="http://ofono.org/">ofono</a> specifications, which is an | * href="http://ofono.org/">ofono</a> specifications, which is an | |||
* interface for mobile telephony applications. | * interface for mobile telephony applications. | |||
skipping to change at line 104 | skipping to change at line 103 | |||
#define E_DBUS_FDO_BUS "org.freedesktop.DBus" | #define E_DBUS_FDO_BUS "org.freedesktop.DBus" | |||
#define E_DBUS_FDO_PATH "/org/freedesktop/DBus" | #define E_DBUS_FDO_PATH "/org/freedesktop/DBus" | |||
#define E_DBUS_FDO_INTERFACE E_DBUS_FDO_BUS | #define E_DBUS_FDO_INTERFACE E_DBUS_FDO_BUS | |||
#define E_DBUS_FDO_INTERFACE_PROPERTIES "org.freedesktop.DBus.Properties" | #define E_DBUS_FDO_INTERFACE_PROPERTIES "org.freedesktop.DBus.Properties" | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
#define E_DBUS_VERSION_MAJOR 1 | #define E_DBUS_VERSION_MAJOR 1 | |||
#define E_DBUS_VERSION_MINOR 2 | #define E_DBUS_VERSION_MINOR 7 | |||
typedef struct _E_DBus_Version | typedef struct _E_DBus_Version | |||
{ | { | |||
int major; | int major; | |||
int minor; | int minor; | |||
int micro; | int micro; | |||
int revision; | int revision; | |||
} E_DBus_Version; | } E_DBus_Version; | |||
EAPI extern E_DBus_Version *e_dbus_version; | EAPI extern E_DBus_Version *e_dbus_version; | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 2 lines changed or added | |||