up-client.h   up-client.h 
skipping to change at line 102 skipping to change at line 102
gboolean up_client_hibernate_sync (UpClient *client, gboolean up_client_hibernate_sync (UpClient *client,
GCancellable *cancellable, GCancellable *cancellable,
GError **error); GError **error);
/* accessors */ /* accessors */
GPtrArray *up_client_get_devices (UpClient *client); GPtrArray *up_client_get_devices (UpClient *client);
const gchar *up_client_get_daemon_version (UpClient *client); const gchar *up_client_get_daemon_version (UpClient *client);
gboolean up_client_get_can_hibernate (UpClient *client); gboolean up_client_get_can_hibernate (UpClient *client);
gboolean up_client_get_lid_is_closed (UpClient *client); gboolean up_client_get_lid_is_closed (UpClient *client);
gboolean up_client_get_lid_is_present (UpClient *client); gboolean up_client_get_lid_is_present (UpClient *client);
gboolean up_client_get_is_docked (UpClient *client);
gboolean up_client_get_can_suspend (UpClient *client); gboolean up_client_get_can_suspend (UpClient *client);
gboolean up_client_get_on_battery (UpClient *client); gboolean up_client_get_on_battery (UpClient *client);
gboolean up_client_get_on_low_battery (UpClient *client); gboolean up_client_get_on_low_battery (UpClient *client);
G_END_DECLS G_END_DECLS
#endif /* __UP_CLIENT_H */ #endif /* __UP_CLIENT_H */
 End of changes. 1 change blocks. 
0 lines changed or deleted 1 lines changed or added


 up-version.h   up-version.h 
skipping to change at line 58 skipping to change at line 58
* *
* The compile-time minor version * The compile-time minor version
*/ */
#define UP_MINOR_VERSION (9) #define UP_MINOR_VERSION (9)
/** /**
* UP_MICRO_VERSION: * UP_MICRO_VERSION:
* *
* The compile-time micro version * The compile-time micro version
*/ */
#define UP_MICRO_VERSION (7) #define UP_MICRO_VERSION (8)
/* check whether a UPower version equal to or greater than /* check whether a UPower version equal to or greater than
* major.minor.micro. * major.minor.micro.
*/ */
#define UP_CHECK_VERSION(major,minor,micro) \ #define UP_CHECK_VERSION(major,minor,micro) \
(UP_MAJOR_VERSION > (major) || \ (UP_MAJOR_VERSION > (major) || \
(UP_MAJOR_VERSION == (major) && UP_MINOR_VERSION > (minor)) || \ (UP_MAJOR_VERSION == (major) && UP_MINOR_VERSION > (minor)) || \
(UP_MAJOR_VERSION == (major) && UP_MINOR_VERSION == (minor) && \ (UP_MAJOR_VERSION == (major) && UP_MINOR_VERSION == (minor) && \
UP_MICRO_VERSION >= (micro))) UP_MICRO_VERSION >= (micro)))
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/