summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-server-protected.h
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/dbus-server-protected.h')
-rw-r--r--dbus/dbus-server-protected.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/dbus/dbus-server-protected.h b/dbus/dbus-server-protected.h
index bbedeea3..d47215b7 100644
--- a/dbus/dbus-server-protected.h
+++ b/dbus/dbus-server-protected.h
@@ -36,17 +36,17 @@ typedef struct DBusServerVTable DBusServerVTable;
struct DBusServerVTable
{
- void (* finalize) (DBusServer *server);
+ void (* finalize) (DBusServer *server);
/**< The finalize method must free the server. */
- void (* handle_watch) (DBusServer *server,
- DBusWatch *watch,
- unsigned int flags);
+ dbus_bool_t (* handle_watch) (DBusServer *server,
+ DBusWatch *watch,
+ unsigned int flags);
/**< The handle_watch method handles reading/writing
* data as indicated by the flags.
*/
- void (* disconnect) (DBusServer *server);
+ void (* disconnect) (DBusServer *server);
/**< Disconnect this server. */
};