sl@0: /* GObject - GLib Type, Object, Parameter and Signal Library sl@0: * Copyright (C) 2001 Red Hat, Inc. sl@0: * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved. sl@0: * sl@0: * This library is free software; you can redistribute it and/or sl@0: * modify it under the terms of the GNU Lesser General Public sl@0: * License as published by the Free Software Foundation; either sl@0: * version 2 of the License, or (at your option) any later version. sl@0: * sl@0: * This library is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU sl@0: * Lesser General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU Lesser General sl@0: * Public License along with this library; if not, write to the sl@0: * Free Software Foundation, Inc., 59 Temple Place, Suite 330, sl@0: * Boston, MA 02111-1307, USA. sl@0: * sl@0: * gvaluearray.h: GLib array type holding GValues sl@0: */ sl@0: #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION) sl@0: #error "Only can be included directly." sl@0: #endif sl@0: sl@0: #ifndef __G_VALUE_ARRAY_H__ sl@0: #define __G_VALUE_ARRAY_H__ sl@0: sl@0: #include sl@0: sl@0: sl@0: G_BEGIN_DECLS sl@0: sl@0: sl@0: /* --- typedefs & structs --- */ sl@0: typedef struct _GValueArray GValueArray; sl@0: /** sl@0: * GValueArray: sl@0: * @n_values: number of values contained in the array sl@0: * @values: array of values sl@0: * sl@0: * A #GValueArray contains an array of #GValue elements. sl@0: */ sl@0: struct _GValueArray sl@0: { sl@0: guint n_values; sl@0: GValue *values; sl@0: sl@0: /*< private >*/ sl@0: guint n_prealloced; sl@0: }; sl@0: sl@0: sl@0: /* --- prototypes --- */ sl@0: IMPORT_C GValue* g_value_array_get_nth (GValueArray *value_array, sl@0: guint index_); sl@0: IMPORT_C GValueArray* g_value_array_new (guint n_prealloced); sl@0: IMPORT_C void g_value_array_free (GValueArray *value_array); sl@0: IMPORT_C GValueArray* g_value_array_copy (const GValueArray *value_array); sl@0: IMPORT_C GValueArray* g_value_array_prepend (GValueArray *value_array, sl@0: const GValue *value); sl@0: IMPORT_C GValueArray* g_value_array_append (GValueArray *value_array, sl@0: const GValue *value); sl@0: IMPORT_C GValueArray* g_value_array_insert (GValueArray *value_array, sl@0: guint index_, sl@0: const GValue *value); sl@0: IMPORT_C GValueArray* g_value_array_remove (GValueArray *value_array, sl@0: guint index_); sl@0: IMPORT_C GValueArray* g_value_array_sort (GValueArray *value_array, sl@0: GCompareFunc compare_func); sl@0: IMPORT_C GValueArray* g_value_array_sort_with_data (GValueArray *value_array, sl@0: GCompareDataFunc compare_func, sl@0: gpointer user_data); sl@0: sl@0: sl@0: G_END_DECLS sl@0: sl@0: #endif /* __G_VALUE_ARRAY_H__ */