ofdbus/dbus/dbus/dbus-gsignature.h
changeset 31 ce057bb09d0b
child 34 5fae379060a7
equal deleted inserted replaced
30:e20de85af2ee 31:ce057bb09d0b
       
     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 
       
    18 #ifndef DBUS_GOBJECT_SIGNATURE_H
       
    19 #define DBUS_GOBJECT_SIGNATURE_H
       
    20 
       
    21 #include <dbus/dbus.h>
       
    22 #ifndef __SYMBIAN32__
       
    23 #include <dbus/dbus-signature.h>
       
    24 #else
       
    25 #include "dbus/dbus-signature.h"
       
    26 #endif
       
    27 #include <glib.h>
       
    28 
       
    29 GType          _dbus_gtype_from_basic_typecode (int typecode);
       
    30 
       
    31 GType          _dbus_gtype_from_signature      (const char              *signature,
       
    32 					       gboolean                 is_client);
       
    33 
       
    34 GType          _dbus_gtype_from_signature_iter (DBusSignatureIter       *sigiter,
       
    35 					       gboolean                 is_client);
       
    36 
       
    37 GArray *       _dbus_gtypes_from_arg_signature (const char              *signature,
       
    38 						gboolean                 is_client);
       
    39 
       
    40 #endif