os/ossrv/ofdbus/dbus-glib/dbus/dbus-gvalue-utils.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-utils.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,73 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* dbus-gvalue-utils.h: Non-DBus-specific functions related to GType/GValue
     1.6 + *
     1.7 + * Copyright (C) 2005 Red Hat, Inc.
     1.8 + *
     1.9 + * Licensed under the Academic Free License version 2.1
    1.10 + * 
    1.11 + * This program is free software; you can redistribute it and/or modify
    1.12 + * it under the terms of the GNU General Public License as published by
    1.13 + * the Free Software Foundation; either version 2 of the License, or
    1.14 + * (at your option) any later version.
    1.15 + *
    1.16 + * This program is distributed in the hope that it will be useful,
    1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.19 + * GNU General Public License for more details.
    1.20 + * 
    1.21 + * You should have received a copy of the GNU General Public License
    1.22 + * along with this program; if not, write to the Free Software
    1.23 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.24 + *
    1.25 + */
    1.26 +
    1.27 +#ifndef DBUS_GOBJECT_VALUE_UTILS_H
    1.28 +#define DBUS_GOBJECT_VALUE_UTILS_H
    1.29 +
    1.30 +#include <glib.h>
    1.31 +#include <glib-object.h>
    1.32 +
    1.33 +G_BEGIN_DECLS
    1.34 +
    1.35 +void           _dbus_g_type_specialized_builtins_init (void);
    1.36 +
    1.37 +gboolean       _dbus_g_type_is_fixed                  (GType gtype); 
    1.38 +guint          _dbus_g_type_fixed_get_size            (GType gtype); 
    1.39 +
    1.40 +gboolean       _dbus_gvalue_set_from_pointer          (GValue *value,
    1.41 +						      gconstpointer storage);
    1.42 +
    1.43 +typedef void (*DBusGHashValueForeachFunc) (GValue * key, GValue *val, gpointer data);
    1.44 +
    1.45 +void           _dbus_g_hash_table_value_foreach       (GHashTable                *table,
    1.46 +						      GType                      hash_type,
    1.47 +						      DBusGHashValueForeachFunc  func,
    1.48 +						      gpointer                   data);
    1.49 +
    1.50 +void           _dbus_g_hash_table_insert_values       (GHashTable                *table,
    1.51 +						      GValue                    *key_val,
    1.52 +						      GValue                    *value_val);
    1.53 +void           _dbus_g_hash_table_insert_steal_values (GHashTable *table,
    1.54 +						      GValue     *key_val,
    1.55 +						      GValue     *value_val);
    1.56 +
    1.57 +gboolean       _dbus_gtype_is_valid_hash_key          (GType type);
    1.58 +gboolean       _dbus_gtype_is_valid_hash_value        (GType type);
    1.59 +
    1.60 +GHashFunc      _dbus_g_hash_func_from_gtype           (GType gtype);
    1.61 +GEqualFunc     _dbus_g_hash_equal_from_gtype          (GType gtype);
    1.62 +GDestroyNotify _dbus_g_hash_free_from_gtype           (GType gtype);
    1.63 +
    1.64 +gboolean       _dbus_gvalue_store                     (GValue          *value,
    1.65 +						      gpointer         storage);
    1.66 +
    1.67 +gboolean       _dbus_gvalue_take                      (GValue          *value,
    1.68 +						      GTypeCValue     *cvalue);
    1.69 +
    1.70 +gboolean       _dbus_gtype_can_signal_error          (GType                    gtype);
    1.71 +gboolean       _dbus_gvalue_signals_error            (const GValue            *value);
    1.72 +
    1.73 +
    1.74 +G_END_DECLS
    1.75 +
    1.76 +#endif