mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-27 16:10:09 +01:00
2006-10-21 Havoc Pennington <hp@redhat.com>
* dbus/dbus-connection.h: don't include the watch/timeout functions in connection section
This commit is contained in:
parent
bf172ce4c5
commit
24083e8f07
2 changed files with 38 additions and 18 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2006-10-21 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* dbus/dbus-connection.h: don't include the watch/timeout
|
||||
functions in connection section
|
||||
|
||||
2006-10-21 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* Documentation! Whee! Doxygen now 100% silent. If you make it
|
||||
|
|
|
|||
|
|
@ -223,24 +223,6 @@ void dbus_connection_set_route_peer_messages (DBusConnection
|
|||
dbus_bool_t value);
|
||||
|
||||
|
||||
int dbus_watch_get_fd (DBusWatch *watch);
|
||||
unsigned int dbus_watch_get_flags (DBusWatch *watch);
|
||||
void* dbus_watch_get_data (DBusWatch *watch);
|
||||
void dbus_watch_set_data (DBusWatch *watch,
|
||||
void *data,
|
||||
DBusFreeFunction free_data_function);
|
||||
dbus_bool_t dbus_watch_handle (DBusWatch *watch,
|
||||
unsigned int flags);
|
||||
dbus_bool_t dbus_watch_get_enabled (DBusWatch *watch);
|
||||
|
||||
int dbus_timeout_get_interval (DBusTimeout *timeout);
|
||||
void* dbus_timeout_get_data (DBusTimeout *timeout);
|
||||
void dbus_timeout_set_data (DBusTimeout *timeout,
|
||||
void *data,
|
||||
DBusFreeFunction free_data_function);
|
||||
dbus_bool_t dbus_timeout_handle (DBusTimeout *timeout);
|
||||
dbus_bool_t dbus_timeout_get_enabled (DBusTimeout *timeout);
|
||||
|
||||
/* Filters */
|
||||
|
||||
dbus_bool_t dbus_connection_add_filter (DBusConnection *connection,
|
||||
|
|
@ -343,6 +325,39 @@ char* dbus_get_local_machine_id (void);
|
|||
|
||||
/** @} */
|
||||
|
||||
|
||||
/**
|
||||
* @addtogroup DBusWatch
|
||||
* @{
|
||||
*/
|
||||
|
||||
int dbus_watch_get_fd (DBusWatch *watch);
|
||||
unsigned int dbus_watch_get_flags (DBusWatch *watch);
|
||||
void* dbus_watch_get_data (DBusWatch *watch);
|
||||
void dbus_watch_set_data (DBusWatch *watch,
|
||||
void *data,
|
||||
DBusFreeFunction free_data_function);
|
||||
dbus_bool_t dbus_watch_handle (DBusWatch *watch,
|
||||
unsigned int flags);
|
||||
dbus_bool_t dbus_watch_get_enabled (DBusWatch *watch);
|
||||
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @addtogroup DBusTimeout
|
||||
* @{
|
||||
*/
|
||||
|
||||
int dbus_timeout_get_interval (DBusTimeout *timeout);
|
||||
void* dbus_timeout_get_data (DBusTimeout *timeout);
|
||||
void dbus_timeout_set_data (DBusTimeout *timeout,
|
||||
void *data,
|
||||
DBusFreeFunction free_data_function);
|
||||
dbus_bool_t dbus_timeout_handle (DBusTimeout *timeout);
|
||||
dbus_bool_t dbus_timeout_get_enabled (DBusTimeout *timeout);
|
||||
|
||||
/** @} */
|
||||
|
||||
DBUS_END_DECLS
|
||||
|
||||
#endif /* DBUS_CONNECTION_H */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue