girepository: Consistently prefix internal functions with _

This should better avoid them being exported.  Rename
girepository-parser.la to girepository-internals.la for clarity.
This commit is contained in:
Colin Walters
2010-11-16 15:08:33 -05:00
parent 61e5bdb7ba
commit ff33cc0791
7 changed files with 299 additions and 299 deletions

View File

@@ -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);
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);
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