mirror of
https://github.com/tstellar/bygfoot.git
synced 2025-03-24 14:40:20 +01:00
33 lines
860 B
C
33 lines
860 B
C
#ifndef XML_COUNTRY_H
|
|
#define XML_COUNTRY_H
|
|
|
|
#include "bygfoot.h"
|
|
|
|
GPtrArray*
|
|
xml_country_get_team_names(const gchar *country_name);
|
|
|
|
void
|
|
xml_country_read_start_element (GMarkupParseContext *context,
|
|
const gchar *element_name,
|
|
const gchar **attribute_names,
|
|
const gchar **attribute_values,
|
|
gpointer user_data,
|
|
GError **error);
|
|
void
|
|
xml_country_read_end_element (GMarkupParseContext *context,
|
|
const gchar *element_name,
|
|
gpointer user_data,
|
|
GError **error);
|
|
void
|
|
xml_country_read_text (GMarkupParseContext *context,
|
|
const gchar *text,
|
|
gsize text_len,
|
|
gpointer user_data,
|
|
GError **error);
|
|
|
|
|
|
void
|
|
xml_country_read(const gchar *country_name);
|
|
|
|
#endif
|