]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/gtk+/gtk+-2.6.4-1.osso7/gtkhashtable.h.diff
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / gtk+ / gtk+-2.6.4-1.osso7 / gtkhashtable.h.diff
1 --- gtk+-2.6.4/gtk/gtkhashtable.h       1970-01-01 02:00:00.000000000 +0200
2 +++ gtk+-2.6.4/gtk/gtkhashtable.h       2005-04-06 16:19:36.606973256 +0300
3 @@ -0,0 +1,61 @@
4 +/* GTK - The GIMP Toolkit
5 + * Copyright (C) 2005 Nokia
6 + * Author: Jorn Baayen <jbaayen@gnome.org>
7 + *
8 + * This library is free software; you can redistribute it and/or
9 + * modify it under the terms of the GNU Lesser General Public
10 + * License as published by the Free Software Foundation; either
11 + * version 2 of the License, or (at your option) any later version.
12 + *
13 + * This library is distributed in the hope that it will be useful,
14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.         See the GNU
16 + * Lesser General Public License for more details.
17 + *
18 + * You should have received a copy of the GNU Lesser General Public
19 + * License along with this library; if not, write to the
20 + * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 + * Boston, MA 02111-1307, USA.
22 + */
23 +
24 +#ifndef __GTK_HASH_TABLE_H__
25 +#define __GTK_HASH_TABLE_H__
26 +
27 +#include <glib-object.h>
28 +
29 +#ifdef __cplusplus
30 +extern "C" {
31 +#endif /* __cplusplus */
32 +
33 +typedef struct _GtkHashTable GtkHashTable;
34 +typedef struct _GtkHashTableClass GtkHashTableClass;
35 +
36 +#define GTK_TYPE_HASH_TABLE              (_gtk_hash_table_get_type ())
37 +#define GTK_HASH_TABLE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GTK_TYPE_HASH_TABLE, GtkHashTable))
38 +#define GTK_HASH_TABLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_HASH_TABLE, GtkHashTableClass))
39 +#define GTK_IS_HASH_TABLE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GTK_TYPE_HASH_TABLE))
40 +#define GTK_IS_HASH_TABLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_HASH_TABLE))
41 +#define GTK_HASH_TABLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_HASH_TABLE, GtkHashTableClass))
42 +
43 +struct _GtkHashTable
44 +{
45 +  GObject parent_instance;
46 +
47 +  GHashTable *hash;
48 +};
49 +
50 +struct _GtkHashTableClass
51 +{
52 +  GObjectClass parent_class;
53 +};
54 +
55 +GType         _gtk_hash_table_get_type (void) G_GNUC_CONST;
56 +GtkHashTable* _gtk_hash_table_new      (void);
57 +
58 +#ifdef __cplusplus
59 +}
60 +#endif /* __cplusplus */
61 +
62 +#endif /* __GTK_HASH_TABLE_H__ */
63 +
64 +