diff options
author | Havoc Pennington <hp@redhat.com> | 2006-10-21 21:57:31 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2006-10-21 21:57:31 +0000 |
commit | 58a0d2759aedc854ccac78d7252f117662734142 (patch) | |
tree | 27e6376bb3075a1b5c670bc29dcac8c7d29ee480 /dbus/dbus-connection.h | |
parent | fed8880c6f718b9f06e589d1769494a47b395c0d (diff) |
2006-10-21 Havoc Pennington <hp@redhat.com>
* More documentation - all public API now documented according to
Doxygen
Diffstat (limited to 'dbus/dbus-connection.h')
-rw-r--r-- | dbus/dbus-connection.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/dbus/dbus-connection.h b/dbus/dbus-connection.h index 401154c1..7d775a2f 100644 --- a/dbus/dbus-connection.h +++ b/dbus/dbus-connection.h @@ -59,11 +59,15 @@ typedef enum { DBUS_WATCH_READABLE = 1 << 0, /**< As in POLLIN */ DBUS_WATCH_WRITABLE = 1 << 1, /**< As in POLLOUT */ - DBUS_WATCH_ERROR = 1 << 2, /**< As in POLLERR (can't watch for this, but - * the flag can be passed to dbus_watch_handle()). + DBUS_WATCH_ERROR = 1 << 2, /**< As in POLLERR (can't watch for + * this, but can be present in + * current state passed to + * dbus_watch_handle()). */ - DBUS_WATCH_HANGUP = 1 << 3 /**< As in POLLHUP (can't watch for it, but - * can be present in current state). + DBUS_WATCH_HANGUP = 1 << 3 /**< As in POLLHUP (can't watch for + * it, but can be present in current + * state passed to + * dbus_watch_handle()). */ } DBusWatchFlags; |