diff options
author | Colin Walters <walters@verbum.org> | 2010-11-16 15:08:33 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2010-11-16 16:58:39 -0500 |
commit | c5cf4ecb0a393af0c9c7cd68859a2e481b6586d2 (patch) | |
tree | d5210313f985b4c8b2ddceafa73de6c97db82e1d /girepository/girmodule.h | |
parent | 3af5038eefaabc50fb806f71780a31986e6c265b (diff) | |
download | gobject-introspection-c5cf4ecb0a393af0c9c7cd68859a2e481b6586d2.tar.gz |
girepository: Consistently prefix internal functions with _
This should better avoid them being exported. Rename
girepository-parser.la to girepository-internals.la for clarity.
Diffstat (limited to 'girepository/girmodule.h')
-rw-r--r-- | girepository/girmodule.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/girepository/girmodule.h b/girepository/girmodule.h index 6c6d6201..c81dec32 100644 --- a/girepository/girmodule.h +++ b/girepository/girmodule.h @@ -59,18 +59,18 @@ struct _GIrModule GHashTable *disguised_structures; }; -GIrModule *g_ir_module_new (const gchar *name, - const gchar *nsversion, - const gchar *module_filename, - const gchar *c_prefix); -void g_ir_module_free (GIrModule *module); +GIrModule *_g_ir_module_new (const gchar *name, + const gchar *nsversion, + const gchar *module_filename, + const gchar *c_prefix); +void _g_ir_module_free (GIrModule *module); -void g_ir_module_add_include_module (GIrModule *module, +void _g_ir_module_add_include_module (GIrModule *module, GIrModule *include_module); -GITypelib * g_ir_module_build_typelib (GIrModule *module); +GITypelib * _g_ir_module_build_typelib (GIrModule *module); -void g_ir_module_fatal (GIrTypelibBuild *build, guint line, const char *msg, ...) G_GNUC_PRINTF (3, 4) G_GNUC_NORETURN; +void _g_ir_module_fatal (GIrTypelibBuild *build, guint line, const char *msg, ...) G_GNUC_PRINTF (3, 4) G_GNUC_NORETURN; void _g_irnode_init_stats (void); void _g_irnode_dump_stats (void); |