os/ossrv/ofdbus/dbus-glib/dbus/dbus-gsignature.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-gsignature.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,46 @@
     1.4 +/* dbus-gsignature.h Mapping from dbus type signatures to GType
     1.5 + *
     1.6 + * Copyright (C) 2005 Red Hat, Inc.
     1.7 + *
     1.8 + * Licensed under the Academic Free License version 2.1
     1.9 + * 
    1.10 + * This program is free software; you can redistribute it and/or modify
    1.11 + * it under the terms of the GNU General Public License as published by
    1.12 + * the Free Software Foundation; either version 2 of the License, or
    1.13 + * (at your option) any later version.
    1.14 + *
    1.15 + * This program is distributed in the hope that it will be useful,
    1.16 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.17 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.18 + * GNU General Public License for more details.
    1.19 + * 
    1.20 + * You should have received a copy of the GNU General Public License
    1.21 + * along with this program; if not, write to the Free Software
    1.22 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.23 + *
    1.24 + */
    1.25 +
    1.26 +
    1.27 +#ifndef DBUS_GOBJECT_SIGNATURE_H
    1.28 +#define DBUS_GOBJECT_SIGNATURE_H
    1.29 +
    1.30 +#include <dbus/dbus.h>
    1.31 +#ifndef __SYMBIAN32__
    1.32 +#include <dbus/dbus-signature.h>
    1.33 +#else
    1.34 +#include "dbus/dbus-signature.h"
    1.35 +#endif
    1.36 +#include <glib.h>
    1.37 +
    1.38 +GType          _dbus_gtype_from_basic_typecode (int typecode);
    1.39 +
    1.40 +GType          _dbus_gtype_from_signature      (const char              *signature,
    1.41 +					       gboolean                 is_client);
    1.42 +
    1.43 +GType          _dbus_gtype_from_signature_iter (DBusSignatureIter       *sigiter,
    1.44 +					       gboolean                 is_client);
    1.45 +
    1.46 +GArray *       _dbus_gtypes_from_arg_signature (const char              *signature,
    1.47 +						gboolean                 is_client);
    1.48 +
    1.49 +#endif