~ubuntu-branches/ubuntu/oneiric/gconf/oneiric-proposed

« back to all changes in this revision

Viewing changes to gconf/gconfd-dbus.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2011-07-13 17:13:23 UTC
  • mfrom: (1.1.29 upstream)
  • Revision ID: james.westby@ubuntu.com-20110713171323-z6pggcee506lakgq
Tags: 3.1.3-0ubuntu1
* New upstream release (v3.1.3)
* Build with --disable-orbit
  - update debian/rules
* Drop liborbit2-dev dependencies
  - update debian/control
* Refresh patches:
  - update debian/patches/02_fix_wrong_return_value.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GConf
 
2
 * Copyright (C) 2003  CodeFactory AB
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef GCONF_GCONFD_DBUS_H
 
21
#define GCONF_GCONFD_DBUS_H
 
22
 
 
23
#include <dbus/dbus.h>
 
24
 
 
25
gboolean gconfd_dbus_init                     (void);
 
26
gboolean gconfd_dbus_check_in_shutdown        (DBusConnection   *connection,
 
27
                                               DBusMessage      *message);
 
28
guint    gconfd_dbus_client_count             (void);
 
29
 
 
30
/* Convenience function copied from andercas old code */
 
31
gboolean gconfd_dbus_get_message_args         (DBusConnection *connection,
 
32
                                               DBusMessage    *message,
 
33
                                               int             first_arg_type,
 
34
                                               ...);
 
35
gboolean gconfd_dbus_set_exception            (DBusConnection  *connection,
 
36
                                               DBusMessage     *message,
 
37
                                               GError         **error);
 
38
gboolean gconfd_dbus_check_in_shutdown        (DBusConnection *connection,
 
39
                                               DBusMessage    *message);
 
40
DBusConnection *gconfd_dbus_get_connection    (void);
 
41
 
 
42
#endif