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/girparser.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/girparser.h')
-rw-r--r-- | girepository/girparser.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/girepository/girparser.h b/girepository/girparser.h index 076c9818..e56c63b5 100644 --- a/girepository/girparser.h +++ b/girepository/girparser.h @@ -29,20 +29,20 @@ G_BEGIN_DECLS typedef struct _GIrParser GIrParser; -GIrParser *g_ir_parser_new (void); -void g_ir_parser_free (GIrParser *parser); -void g_ir_parser_set_includes (GIrParser *parser, - const gchar *const *includes); - -GIrModule *g_ir_parser_parse_string (GIrParser *parser, - const gchar *namespace, - const gchar *filename, - const gchar *buffer, - gssize length, - GError **error); -GIrModule *g_ir_parser_parse_file (GIrParser *parser, - const gchar *filename, - GError **error); +GIrParser *_g_ir_parser_new (void); +void _g_ir_parser_free (GIrParser *parser); +void _g_ir_parser_set_includes (GIrParser *parser, + const gchar *const *includes); + +GIrModule *_g_ir_parser_parse_string (GIrParser *parser, + const gchar *namespace, + const gchar *filename, + const gchar *buffer, + gssize length, + GError **error); +GIrModule *_g_ir_parser_parse_file (GIrParser *parser, + const gchar *filename, + GError **error); G_END_DECLS |