mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 15:33:39 +02:00
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:
@@ -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
|
||||
|
Reference in New Issue
Block a user