Dist ref-add.sin, ref-del.sin. (#63092, Dan Winship)
[glib.git] / gobject / gtypeplugin.h
blobdf692589ac15dca7cda5e9416dc215c0710d78c0
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2000 Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307, USA.
19 #ifndef __G_TYPE_PLUGIN_H__
20 #define __G_TYPE_PLUGIN_H__
23 #include <gobject/gtype.h>
25 G_BEGIN_DECLS
27 /* --- type macros --- */
28 #define G_TYPE_TYPE_PLUGIN (g_type_plugin_get_type ())
29 #define G_TYPE_PLUGIN(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TYPE_PLUGIN, GTypePlugin))
30 #define G_TYPE_PLUGIN_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), G_TYPE_TYPE_PLUGIN, GTypePluginClass))
31 #define G_IS_TYPE_PLUGIN(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TYPE_PLUGIN))
32 #define G_IS_TYPE_PLUGIN_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), G_TYPE_TYPE_PLUGIN))
33 #define G_TYPE_PLUGIN_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), G_TYPE_TYPE_PLUGIN, GTypePluginClass))
36 /* --- typedefs & structures --- */
37 typedef struct _GTypePluginClass GTypePluginClass;
38 typedef void (*GTypePluginUse) (GTypePlugin *plugin);
39 typedef void (*GTypePluginUnuse) (GTypePlugin *plugin);
40 typedef void (*GTypePluginCompleteTypeInfo) (GTypePlugin *plugin,
41 GType g_type,
42 GTypeInfo *info,
43 GTypeValueTable *value_table);
44 typedef void (*GTypePluginCompleteInterfaceInfo) (GTypePlugin *plugin,
45 GType interface_type,
46 GType instance_type,
47 GInterfaceInfo *info);
48 struct _GTypePluginClass
50 GTypeInterface base_iface;
52 GTypePluginUse use_plugin;
53 GTypePluginUnuse unuse_plugin;
54 GTypePluginCompleteTypeInfo complete_type_info;
55 GTypePluginCompleteInterfaceInfo complete_interface_info;
59 /* --- prototypes --- */
60 GType g_type_plugin_get_type (void) G_GNUC_CONST;
61 void g_type_plugin_use (GTypePlugin *plugin);
62 void g_type_plugin_unuse (GTypePlugin *plugin);
63 void g_type_plugin_complete_type_info (GTypePlugin *plugin,
64 GType g_type,
65 GTypeInfo *info,
66 GTypeValueTable *value_table);
67 void g_type_plugin_complete_interface_info (GTypePlugin *plugin,
68 GType interface_type,
69 GType instance_type,
70 GInterfaceInfo *info);
72 G_END_DECLS
74 #endif /* __G_TYPE_PLUGIN_H__ */