1
1
mirror of https://github.com/tstellar/bygfoot.git synced 2025-02-24 15:27:38 +01:00
bygfoot/src/xml_mmatches.h

32 lines
814 B
C
Raw Normal View History

2005-08-20 19:39:36 +00:00
#ifndef XML_MMATCHES_H
#define XML_MMATCHES_H
void
xml_mmatches_write(const gchar *prefix);
void
xml_mmatches_start_element (GMarkupParseContext *context,
const gchar *element_name,
const gchar **attribute_names,
const gchar **attribute_values,
gpointer user_data,
GError **error);
void
xml_mmatches_end_element (GMarkupParseContext *context,
const gchar *element_name,
gpointer user_data,
GError **error);
void
xml_mmatches_text (GMarkupParseContext *context,
const gchar *text,
gsize text_len,
gpointer user_data,
GError **error);
void
xml_mmatches_read(const gchar *filename);
#endif