os/ossrv/ofdbus/dbus-glib/dbus/dbus-gvalue.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 #ifndef DBUS_GOBJECT_VALUE_H
    18 #define DBUS_GOBJECT_VALUE_H
    19 
    20 #include <dbus/dbus.h>
    21 #include <dbus/dbus-signature.h>
    22 #include <glib.h>
    23 #include <glib-object.h>
    24 #include "dbus/dbus-glib.h"
    25 
    26 G_BEGIN_DECLS
    27 
    28 typedef struct {
    29   DBusGConnection    *gconnection;
    30   DBusGProxy         *proxy;
    31 } DBusGValueMarshalCtx;
    32 
    33 void           _dbus_g_value_types_init        (void);
    34 
    35 char *         _dbus_gtype_to_signature        (GType                    type);
    36 char *         _dbus_gvalue_to_signature       (const GValue            *val);
    37 
    38 gboolean       _dbus_gvalue_demarshal          (DBusGValueMarshalCtx    *context,
    39 					       DBusMessageIter         *iter,
    40 					       GValue                  *value,
    41 					       GError                 **error);
    42 
    43 gboolean       _dbus_gvalue_demarshal_variant  (DBusGValueMarshalCtx    *context,
    44 					       DBusMessageIter         *iter,
    45 					       GValue                  *value,
    46 					       GError                 **error);
    47 
    48 GValueArray *  _dbus_gvalue_demarshal_message  (DBusGValueMarshalCtx    *context,
    49 					       DBusMessage             *message,
    50 					       guint                    n_params,
    51 					       const GType             *types, 
    52 					       GError                 **error);
    53 
    54 gboolean       _dbus_gvalue_marshal            (DBusMessageIter         *iter,
    55 					       const GValue            *value);
    56 
    57 G_END_DECLS
    58 
    59 #endif /* DBUS_GOBJECT_VALUE_H */