os/ossrv/ofdbus/dbus/bus/activation.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus/bus/activation.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,66 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* activation.h  Activation of services
     1.6 + *
     1.7 + * Copyright (C) 2003  CodeFactory AB
     1.8 + *  Copyright (C) 2003 Red Hat Inc.
     1.9 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
    1.10 +
    1.11 + *
    1.12 + * Licensed under the Academic Free License version 2.1
    1.13 + * 
    1.14 + * This program is free software; you can redistribute it and/or modify
    1.15 + * it under the terms of the GNU General Public License as published by
    1.16 + * the Free Software Foundation; either version 2 of the License, or
    1.17 + * (at your option) any later version.
    1.18 + *
    1.19 + * This program is distributed in the hope that it will be useful,
    1.20 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.21 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.22 + * GNU General Public License for more details.
    1.23 + * 
    1.24 + * You should have received a copy of the GNU General Public License
    1.25 + * along with this program; if not, write to the Free Software
    1.26 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.27 + *
    1.28 + */
    1.29 +
    1.30 +#ifndef BUS_ACTIVATION_H
    1.31 +#define BUS_ACTIVATION_H
    1.32 +
    1.33 +#include <dbus/dbus.h>
    1.34 +#ifndef __SYMBIAN32__
    1.35 +#include <dbus/dbus-list.h>
    1.36 +#else
    1.37 +#include "dbus-list.h"
    1.38 +#endif
    1.39 +#include "bus.h"
    1.40 +
    1.41 +BusActivation* bus_activation_new              (BusContext        *context,
    1.42 +						const DBusString  *address,
    1.43 +						DBusList         **directories,
    1.44 +						DBusError         *error);
    1.45 +BusActivation* bus_activation_ref              (BusActivation     *activation);
    1.46 +void           bus_activation_unref            (BusActivation     *activation);
    1.47 +dbus_bool_t    bus_activation_activate_service (BusActivation     *activation,
    1.48 +						DBusConnection    *connection,
    1.49 +						BusTransaction    *transaction,
    1.50 +						dbus_bool_t        auto_activation,
    1.51 +						DBusMessage       *activation_message,
    1.52 +						const char        *service_name,
    1.53 +						DBusError         *error);
    1.54 +dbus_bool_t    bus_activation_service_created  (BusActivation     *activation,
    1.55 +						const char        *service_name,
    1.56 +						BusTransaction    *transaction,
    1.57 +						DBusError         *error);
    1.58 +dbus_bool_t    bus_activation_list_services    (BusActivation     *registry,
    1.59 +						char            ***listp,
    1.60 +						int               *array_len);
    1.61 +
    1.62 +dbus_bool_t    bus_activation_send_pending_auto_activation_messages (BusActivation     *activation,
    1.63 +								     BusService        *service,
    1.64 +								     BusTransaction    *transaction,
    1.65 +								     DBusError         *error);
    1.66 +
    1.67 +
    1.68 +
    1.69 +#endif /* BUS_ACTIVATION_H */