1
1
mirror of https://github.com/tstellar/bygfoot.git synced 2025-01-18 18:02:32 +01:00
bygfoot/src/xml_cup.h

32 lines
785 B
C
Raw Normal View History

2004-12-23 13:58:39 +01:00
#ifndef XML_CUP_H
#define XML_CUP_H
#include "bygfoot.h"
void
xml_cup_read_text (GMarkupParseContext *context,
const gchar *text,
gsize text_len,
gpointer user_data,
GError **error);
void
xml_cup_read_start_element (GMarkupParseContext *context,
const gchar *element_name,
const gchar **attribute_names,
const gchar **attribute_values,
gpointer user_data,
GError **error);
void
xml_cup_read_end_element (GMarkupParseContext *context,
const gchar *element_name,
gpointer user_data,
GError **error);
void
xml_cup_read(const gchar *file, GArray *cups);
2004-12-23 13:58:39 +01:00
#endif