1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ofdbus/dbus/bus/driver.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,52 @@
1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
1.5 +/* driver.h Bus client (driver)
1.6 + *
1.7 + * Copyright (C) 2003 CodeFactory AB
1.8 + *
1.9 + * Licensed under the Academic Free License version 2.1
1.10 + *
1.11 + * This program is free software; you can redistribute it and/or modify
1.12 + * it under the terms of the GNU General Public License as published by
1.13 + * the Free Software Foundation; either version 2 of the License, or
1.14 + * (at your option) any later version.
1.15 + *
1.16 + * This program is distributed in the hope that it will be useful,
1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.19 + * GNU General Public License for more details.
1.20 + *
1.21 + * You should have received a copy of the GNU General Public License
1.22 + * along with this program; if not, write to the Free Software
1.23 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1.24 + *
1.25 + */
1.26 +
1.27 +#ifndef BUS_DRIVER_H
1.28 +#define BUS_DRIVER_H
1.29 +
1.30 +#include <dbus/dbus.h>
1.31 +#include "connection.h"
1.32 +
1.33 +void bus_driver_remove_connection (DBusConnection *connection);
1.34 +dbus_bool_t bus_driver_handle_message (DBusConnection *connection,
1.35 + BusTransaction *transaction,
1.36 + DBusMessage *message,
1.37 + DBusError *error);
1.38 +dbus_bool_t bus_driver_send_service_lost (DBusConnection *connection,
1.39 + const char *service_name,
1.40 + BusTransaction *transaction,
1.41 + DBusError *error);
1.42 +dbus_bool_t bus_driver_send_service_acquired (DBusConnection *connection,
1.43 + const char *service_name,
1.44 + BusTransaction *transaction,
1.45 + DBusError *error);
1.46 +dbus_bool_t bus_driver_send_service_owner_changed (const char *service_name,
1.47 + const char *old_owner,
1.48 + const char *new_owner,
1.49 + BusTransaction *transaction,
1.50 + DBusError *error);
1.51 +dbus_bool_t bus_driver_generate_introspect_string (DBusString *xml);
1.52 +
1.53 +
1.54 +
1.55 +#endif /* BUS_DRIVER_H */