2
0
Fork 0
lighttpd2/include/lighttpd/angel_config_parser.h

15 lines
440 B
C
Raw Normal View History

#ifndef _LIGHTTPD_ANGEL_CONIG_PARSER_H_
#define _LIGHTTPD_ANGEL_CONIG_PARSER_H_
/* error handling */
2009-07-09 20:17:24 +00:00
#define LI_ANGEL_CONFIG_PARSER_ERROR li_angel_config_parser_error_quark()
LI_API GQuark li_angel_config_parser_error_quark();
typedef enum {
LI_ANGEL_CONFIG_PARSER_ERROR_PARSE, /* parse error */
} liAngelConfigParserError;
2009-07-09 20:17:24 +00:00
LI_API gboolean li_angel_config_parse_file(liServer *srv, const gchar *filename, GError **err);
#endif