/* GDBus - GLib D-Bus Library * * Copyright (C) 2008-2010 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * * Author: David Zeuthen */ #ifndef __G_DBUS_CODEGEN_PRIVATE_H__ #define __G_DBUS_CODEGEN_PRIVATE_H__ #include #include "gdbusobjectproxy.h" G_BEGIN_DECLS gboolean _g_signal_accumulator_false_handled (GSignalInvocationHint *ihint, GValue *return_accu, const GValue *handler_return, gpointer dummy); gboolean _g_dbus_object_stub_has_authorize_method_handlers (GDBusObjectStub *stub); GDBusObjectProxy *_g_dbus_object_proxy_new (GDBusConnection *connection, const gchar *object_path); void _g_dbus_object_proxy_add_interface (GDBusObjectProxy *proxy, GDBusProxy *interface_proxy); void _g_dbus_object_proxy_remove_interface (GDBusObjectProxy *proxy, const gchar *interface_name); G_END_DECLS #endif /* __G_DBUS_CODEGEN_PRIVATE_H__ */