sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: #ifndef DBUS_GOBJECT_VALUE_H sl@0: #define DBUS_GOBJECT_VALUE_H sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include "dbus/dbus-glib.h" sl@0: sl@0: G_BEGIN_DECLS sl@0: sl@0: typedef struct { sl@0: DBusGConnection *gconnection; sl@0: DBusGProxy *proxy; sl@0: } DBusGValueMarshalCtx; sl@0: sl@0: void _dbus_g_value_types_init (void); sl@0: sl@0: char * _dbus_gtype_to_signature (GType type); sl@0: char * _dbus_gvalue_to_signature (const GValue *val); sl@0: sl@0: gboolean _dbus_gvalue_demarshal (DBusGValueMarshalCtx *context, sl@0: DBusMessageIter *iter, sl@0: GValue *value, sl@0: GError **error); sl@0: sl@0: gboolean _dbus_gvalue_demarshal_variant (DBusGValueMarshalCtx *context, sl@0: DBusMessageIter *iter, sl@0: GValue *value, sl@0: GError **error); sl@0: sl@0: GValueArray * _dbus_gvalue_demarshal_message (DBusGValueMarshalCtx *context, sl@0: DBusMessage *message, sl@0: guint n_params, sl@0: const GType *types, sl@0: GError **error); sl@0: sl@0: gboolean _dbus_gvalue_marshal (DBusMessageIter *iter, sl@0: const GValue *value); sl@0: sl@0: G_END_DECLS sl@0: sl@0: #endif /* DBUS_GOBJECT_VALUE_H */