Add missing header text
[ladish.git] / cdbus / object_path.h
blob41062f9530b73683a3a0b16392f8f9ddc49f5eb6
1 /* -*- Mode: C ; c-basic-offset: 2 -*- */
2 /*
3 * LADI Session Handler (ladish)
5 * Copyright (C) 2008,2009,2010,2011 Nedko Arnaudov <nedko@arnaudov.name>
6 * Copyright (C) 2008 Juuso Alasuutari <juuso.alasuutari@gmail.com>
8 **************************************************************************
9 * This file contains interface to D-Bus object path helpers
10 **************************************************************************
12 * Licensed under the Academic Free License version 2.1
14 * LADI Session Handler is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * LADI Session Handler is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with LADI Session Handler. If not, see <http://www.gnu.org/licenses/>
26 * or write to the Free Software Foundation, Inc.,
27 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
30 #ifndef __CDBUS_OBJECT_PATH_H__
31 #define __CDBUS_OBJECT_PATH_H__
33 typedef struct cdbus_object_path_tag { int unused; } * cdbus_object_path;
35 cdbus_object_path cdbus_object_path_new(const char * name, const struct cdbus_interface_descriptor * iface, ...);
36 bool cdbus_object_path_register(DBusConnection * connection_ptr, cdbus_object_path opath);
37 void cdbus_object_path_unregister(DBusConnection * connection_ptr, cdbus_object_path opath);
38 void cdbus_object_path_destroy(DBusConnection * connection_ptr, cdbus_object_path opath);
40 #endif /* __CDBUS_OBJECT_PATH_H__ */