codegen: Fix array size variable on assignment
[vala-lang.git] / gobject-introspection / gidlmodule.h
blob3564a75fcc8d84e5d3d06ba4401be7ac9d5a3987
1 /* GObject introspection: Parsed IDL
3 * Copyright (C) 2005 Matthias Clasen
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __G_IDL_MODULE_H__
22 #define __G_IDL_MODULE_H__
24 #include <glib.h>
25 #include "gmetadata.h"
27 G_BEGIN_DECLS
30 typedef struct _GIdlModule GIdlModule;
32 struct _GIdlModule
34 gchar *name;
35 gchar *shared_library;
36 GList *entries;
39 GIdlModule *g_idl_module_new (const gchar *name,
40 const gchar *module_filename);
41 void g_idl_module_free (GIdlModule *module);
43 GMetadata * g_idl_module_build_metadata (GIdlModule *module,
44 GList *modules);
46 G_END_DECLS
48 #endif /* __G_IDL_MODULE_H__ */