girepository: Remove _ prefix from private functions

Now that libgirepository uses `GI_AVAILABLE_IN_*` macros, that’s what
controls symbol visibility. The `_` prefixes are redundant, and out of
keeping with the rest of GLib.

Signed-off-by: Philip Withnall <pwithnall@gnome.org>

Helps: #3155
This commit is contained in:
Philip Withnall
2023-11-08 15:23:31 +00:00
parent 7b029e564d
commit 2b544c3f66
26 changed files with 518 additions and 518 deletions

View File

@@ -31,19 +31,19 @@ G_BEGIN_DECLS
typedef struct _GIIrParser GIIrParser;
GIIrParser *_gi_ir_parser_new (void);
void _gi_ir_parser_free (GIIrParser *parser);
void _gi_ir_parser_set_includes (GIIrParser *parser,
const gchar *const *includes);
GIIrParser *gi_ir_parser_new (void);
void gi_ir_parser_free (GIIrParser *parser);
void gi_ir_parser_set_includes (GIIrParser *parser,
const gchar *const *includes);
GIIrModule *_gi_ir_parser_parse_string (GIIrParser *parser,
const gchar *namespace,
const gchar *filename,
const gchar *buffer,
gssize length,
GError **error);
GIIrModule *_gi_ir_parser_parse_file (GIIrParser *parser,
const gchar *filename,
GError **error);
GIIrModule *gi_ir_parser_parse_string (GIIrParser *parser,
const gchar *namespace,
const gchar *filename,
const gchar *buffer,
gssize length,
GError **error);
GIIrModule *gi_ir_parser_parse_file (GIIrParser *parser,
const gchar *filename,
GError **error);
G_END_DECLS