os/ossrv/ofdbus/dbus-glib/dbus/dbus-gvalue.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus-glib/dbus/dbus-gvalue.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,59 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +#ifndef DBUS_GOBJECT_VALUE_H
    1.21 +#define DBUS_GOBJECT_VALUE_H
    1.22 +
    1.23 +#include <dbus/dbus.h>
    1.24 +#include <dbus/dbus-signature.h>
    1.25 +#include <glib.h>
    1.26 +#include <glib-object.h>
    1.27 +#include "dbus/dbus-glib.h"
    1.28 +
    1.29 +G_BEGIN_DECLS
    1.30 +
    1.31 +typedef struct {
    1.32 +  DBusGConnection    *gconnection;
    1.33 +  DBusGProxy         *proxy;
    1.34 +} DBusGValueMarshalCtx;
    1.35 +
    1.36 +void           _dbus_g_value_types_init        (void);
    1.37 +
    1.38 +char *         _dbus_gtype_to_signature        (GType                    type);
    1.39 +char *         _dbus_gvalue_to_signature       (const GValue            *val);
    1.40 +
    1.41 +gboolean       _dbus_gvalue_demarshal          (DBusGValueMarshalCtx    *context,
    1.42 +					       DBusMessageIter         *iter,
    1.43 +					       GValue                  *value,
    1.44 +					       GError                 **error);
    1.45 +
    1.46 +gboolean       _dbus_gvalue_demarshal_variant  (DBusGValueMarshalCtx    *context,
    1.47 +					       DBusMessageIter         *iter,
    1.48 +					       GValue                  *value,
    1.49 +					       GError                 **error);
    1.50 +
    1.51 +GValueArray *  _dbus_gvalue_demarshal_message  (DBusGValueMarshalCtx    *context,
    1.52 +					       DBusMessage             *message,
    1.53 +					       guint                    n_params,
    1.54 +					       const GType             *types, 
    1.55 +					       GError                 **error);
    1.56 +
    1.57 +gboolean       _dbus_gvalue_marshal            (DBusMessageIter         *iter,
    1.58 +					       const GValue            *value);
    1.59 +
    1.60 +G_END_DECLS
    1.61 +
    1.62 +#endif /* DBUS_GOBJECT_VALUE_H */