X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgdbusprivate.h;h=0e381219782f6591df8b2a2fde8ce007cdb0aea0;hb=a3d86afa81ff34ce797a3928fd619ead219a37af;hp=a39c19274e42f4eff581616a0b979f7ffb739205;hpb=94b907134426e26393a86630dae5ce53baee6ae6;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gdbusprivate.h b/gio/gdbusprivate.h index a39c192..0e38121 100644 --- a/gio/gdbusprivate.h +++ b/gio/gdbusprivate.h @@ -13,20 +13,18 @@ * 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. + * Public License along with this library; if not, see . * * Author: David Zeuthen */ +#ifndef __G_DBUS_PRIVATE_H__ +#define __G_DBUS_PRIVATE_H__ + #if !defined (GIO_COMPILATION) #error "gdbusprivate.h is a private header file." #endif -#ifndef __G_DBUS_PRIVATE_H__ -#define __G_DBUS_PRIVATE_H__ - #include G_BEGIN_DECLS @@ -76,6 +74,11 @@ gboolean _g_dbus_worker_flush_sync (GDBusWorker *worker, GCancellable *cancellable, GError **error); +/* can be called from any thread */ +void _g_dbus_worker_close (GDBusWorker *worker, + GCancellable *cancellable, + GSimpleAsyncResult *result); + /* ---------------------------------------------------------------------------------------------------- */ void _g_dbus_initialize (void); @@ -114,15 +117,16 @@ gchar *_g_dbus_enum_to_string (GType enum_type, gint value); /* ---------------------------------------------------------------------------------------------------- */ -GDBusMethodInvocation *_g_dbus_method_invocation_new (const gchar *sender, - const gchar *object_path, - const gchar *interface_name, - const gchar *method_name, - const GDBusMethodInfo *method_info, - GDBusConnection *connection, - GDBusMessage *message, - GVariant *parameters, - gpointer user_data); +GDBusMethodInvocation *_g_dbus_method_invocation_new (const gchar *sender, + const gchar *object_path, + const gchar *interface_name, + const gchar *method_name, + const GDBusMethodInfo *method_info, + const GDBusPropertyInfo *property_info, + GDBusConnection *connection, + GDBusMessage *message, + GVariant *parameters, + gpointer user_data); /* ---------------------------------------------------------------------------------------------------- */ @@ -131,15 +135,16 @@ gboolean _g_signal_accumulator_false_handled (GSignalInvocationHint *ihint, const GValue *handler_return, gpointer dummy); -gboolean _g_dbus_object_stub_has_authorize_method_handlers (GDBusObjectStub *stub); +gboolean _g_dbus_object_skeleton_has_authorize_method_handlers (GDBusObjectSkeleton *object); -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); +/* Implemented in gdbusconnection.c */ +GDBusConnection *_g_bus_get_singleton_if_exists (GBusType bus_type); + G_END_DECLS #endif /* __G_DBUS_PRIVATE_H__ */