summaryrefslogtreecommitdiff
path: root/girepository/girparser.h
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-11-16 15:08:33 -0500
committerColin Walters <walters@verbum.org>2010-11-16 16:58:39 -0500
commitc5cf4ecb0a393af0c9c7cd68859a2e481b6586d2 (patch)
treed5210313f985b4c8b2ddceafa73de6c97db82e1d /girepository/girparser.h
parent3af5038eefaabc50fb806f71780a31986e6c265b (diff)
downloadgobject-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.h28
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