Updated Spanish translation
[anjuta-git-plugin.git] / libanjuta / anjuta-glue-c.h
blobded428852894bf441d9eaaae67bb324dcb712062
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 anjuta-glue-c.h
4 Copyright (C) 2007 Sébastien Granjoux
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef __ANJUTA_GLUE_C_H__
22 #define __ANJUTA_GLUE_C_H__
24 #include "anjuta-glue-plugin.h"
26 #include <gmodule.h>
28 G_BEGIN_DECLS
30 #define ANJUTA_GLUE_TYPE_C_PLUGIN (anjuta_glue_c_plugin_get_type ())
31 #define ANJUTA_GLUE_C_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ANJUTA_GLUE_TYPE_C_PLUGIN, AnjutaGlueCPlugin))
32 #define ANJUTA_GLUE_C_PLUGIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ANJUTA_GLUE_TYPE_C_PLUGIN, AnjutaGlueCPluginClass))
33 #define ANJUTA_GLUE_IS_C_PLUGIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ANJUTA_GLUE_TYPE_C_PLUGIN))
34 #define ANJUTA_GLUE_IS_C_PLUGIN_CLASS(klass)(G_TYPE_CHECK_CLASS_TYPE ((obj), ANJUTA_GLUE_TYPE_C_PLUGIN))
35 #define ANJUTA_GLUE_C_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), ANJUTA_GLUE_TYPE_C_PLUGIN, AnjutaGlueCPluginClass))
37 typedef struct _AnjutaGlueCPlugin AnjutaGlueCPlugin;
38 typedef struct _AnjutaGlueCPluginClass AnjutaGlueCPluginClass;
40 struct _AnjutaGlueCPlugin
42 AnjutaGluePlugin parent;
43 GModule *module;
46 struct _AnjutaGlueCPluginClass
48 AnjutaGluePluginClass parent_class;
51 GType anjuta_glue_c_plugin_get_type (void) G_GNUC_CONST;
53 AnjutaGluePlugin *anjuta_glue_c_plugin_new (void);
55 G_END_DECLS
57 #endif /* __ANJUTA_GLUE_C_H__ */