summaryrefslogtreecommitdiff
path: root/tools/girmodule.h
diff options
context:
space:
mode:
authorColin Walters <walters@src.gnome.org>2008-08-06 00:17:25 +0000
committerColin Walters <walters@src.gnome.org>2008-08-06 00:17:25 +0000
commit78bec866b86a315c8c7eb78eea9e0191dba5dc9c (patch)
tree797f57aac2f180c29e36017514331e9128b3578f /tools/girmodule.h
parent49b2d0afbf9f752d899b782c5b01587ebeaf3985 (diff)
downloadgobject-introspection-78bec866b86a315c8c7eb78eea9e0191dba5dc9c.tar.gz
Rename lots of things to be GIr namespaced, start to convert tests
svn path=/branches/gir-compiler/; revision=300
Diffstat (limited to 'tools/girmodule.h')
-rw-r--r--tools/girmodule.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/girmodule.h b/tools/girmodule.h
index 0814ed51..a59e9961 100644
--- a/tools/girmodule.h
+++ b/tools/girmodule.h
@@ -18,8 +18,8 @@
* Boston, MA 02111-1307, USA.
*/
-#ifndef __G_IDL_MODULE_H__
-#define __G_IDL_MODULE_H__
+#ifndef __G_IR_MODULE_H__
+#define __G_IR_MODULE_H__
#include <glib.h>
#include "gtypelib.h"
@@ -27,22 +27,22 @@
G_BEGIN_DECLS
-typedef struct _GIdlModule GIdlModule;
+typedef struct _GIrModule GIrModule;
-struct _GIdlModule
+struct _GIrModule
{
gchar *name;
gchar *shared_library;
GList *entries;
};
-GIdlModule *g_idl_module_new (const gchar *name,
- const gchar *module_filename);
-void g_idl_module_free (GIdlModule *module);
+GIrModule *g_ir_module_new (const gchar *name,
+ const gchar *module_filename);
+void g_ir_module_free (GIrModule *module);
-GTypelib * g_idl_module_build_metadata (GIdlModule *module,
- GList *modules);
+GTypelib * g_ir_module_build_metadata (GIrModule *module,
+ GList *modules);
G_END_DECLS
-#endif /* __G_IDL_MODULE_H__ */
+#endif /* __G_IR_MODULE_H__ */