1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* activation.h Activation of services
4 * Copyright (C) 2003 CodeFactory AB
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #ifndef BUS_ACTIVATION_H
25 #define BUS_ACTIVATION_H
27 #include <dbus/dbus.h>
28 #include <dbus/dbus-list.h>
31 BusActivation* bus_activation_new (BusContext *context,
32 const DBusString *address,
33 DBusList **directories,
35 dbus_bool_t bus_activation_reload (BusActivation *activation,
36 const DBusString *address,
37 DBusList **directories,
39 BusActivation* bus_activation_ref (BusActivation *activation);
40 void bus_activation_unref (BusActivation *activation);
42 dbus_bool_t bus_activation_set_environment_variable (BusActivation *activation,
46 dbus_bool_t bus_activation_activate_service (BusActivation *activation,
47 DBusConnection *connection,
48 BusTransaction *transaction,
49 dbus_bool_t auto_activation,
50 DBusMessage *activation_message,
51 const char *service_name,
53 dbus_bool_t bus_activation_service_created (BusActivation *activation,
54 const char *service_name,
55 BusTransaction *transaction,
57 dbus_bool_t bus_activation_list_services (BusActivation *registry,
60 dbus_bool_t dbus_activation_systemd_failure (BusActivation *activation,
61 DBusMessage *message);
63 dbus_bool_t bus_activation_send_pending_auto_activation_messages (BusActivation *activation,
65 BusTransaction *transaction,
69 #endif /* BUS_ACTIVATION_H */