mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 11:20:27 +01:00
71 lines
2.6 KiB
C
71 lines
2.6 KiB
C
|
|
/* -*- mode: C; c-file-style: "gnu" -*- */
|
||
|
|
/* dbus-gvalue-utils.h: Non-DBus-specific functions related to GType/GValue
|
||
|
|
*
|
||
|
|
* Copyright (C) 2005 Red Hat, Inc.
|
||
|
|
*
|
||
|
|
* Licensed under the Academic Free License version 2.1
|
||
|
|
*
|
||
|
|
* This program is free software; you can redistribute it and/or modify
|
||
|
|
* it under the terms of the GNU General Public License as published by
|
||
|
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
|
* (at your option) any later version.
|
||
|
|
*
|
||
|
|
* This program is distributed in the hope that it will be useful,
|
||
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
* GNU General Public License for more details.
|
||
|
|
*
|
||
|
|
* You should have received a copy of the GNU General Public License
|
||
|
|
* along with this program; if not, write to the Free Software
|
||
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef DBUS_GOBJECT_VALUE_UTILS_H
|
||
|
|
#define DBUS_GOBJECT_VALUE_UTILS_H
|
||
|
|
|
||
|
|
#include <glib.h>
|
||
|
|
#include <glib-object.h>
|
||
|
|
|
||
|
|
G_BEGIN_DECLS
|
||
|
|
|
||
|
|
void dbus_g_type_specialized_builtins_init (void);
|
||
|
|
|
||
|
|
gboolean dbus_g_type_is_fixed (GType gtype);
|
||
|
|
guint dbus_g_type_fixed_get_size (GType gtype);
|
||
|
|
|
||
|
|
gboolean dbus_gvalue_set_from_pointer (GValue *value,
|
||
|
|
gconstpointer storage);
|
||
|
|
|
||
|
|
typedef void (*DBusGHashValueForeachFunc) (GValue * key, GValue *val, gpointer data);
|
||
|
|
|
||
|
|
void dbus_g_hash_table_value_foreach (GHashTable *table,
|
||
|
|
GType hash_type,
|
||
|
|
DBusGHashValueForeachFunc func,
|
||
|
|
gpointer data);
|
||
|
|
|
||
|
|
void dbus_g_hash_table_insert_values (GHashTable *table,
|
||
|
|
GValue *key_val,
|
||
|
|
GValue *value_val);
|
||
|
|
void dbus_g_hash_table_insert_steal_values (GHashTable *table,
|
||
|
|
GValue *key_val,
|
||
|
|
GValue *value_val);
|
||
|
|
|
||
|
|
gboolean dbus_gtype_is_valid_hash_key (GType type);
|
||
|
|
gboolean dbus_gtype_is_valid_hash_value (GType type);
|
||
|
|
|
||
|
|
GHashFunc dbus_g_hash_func_from_gtype (GType gtype);
|
||
|
|
GEqualFunc dbus_g_hash_equal_from_gtype (GType gtype);
|
||
|
|
GDestroyNotify dbus_g_hash_free_from_gtype (GType gtype);
|
||
|
|
|
||
|
|
gboolean dbus_gvalue_store (GValue *value,
|
||
|
|
gpointer storage);
|
||
|
|
|
||
|
|
gboolean dbus_gvalue_take (GValue *value,
|
||
|
|
GTypeCValue *cvalue);
|
||
|
|
|
||
|
|
|
||
|
|
G_END_DECLS
|
||
|
|
|
||
|
|
#endif
|