mirror of
https://github.com/tstellar/bygfoot.git
synced 2025-02-24 15:27:38 +01:00
32 lines
814 B
C
32 lines
814 B
C
|
#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
|