You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
421 B
C
15 lines
421 B
C
#ifndef _LIGHTTPD_ANGEL_CONIG_PARSER_H_
|
|
#define _LIGHTTPD_ANGEL_CONIG_PARSER_H_
|
|
|
|
/* error handling */
|
|
#define ANGEL_CONFIG_PARSER_ERROR angel_config_parser_error_quark()
|
|
LI_API GQuark angel_config_parser_error_quark();
|
|
|
|
typedef enum {
|
|
ANGEL_CONFIG_PARSER_ERROR_PARSE, /* parse error */
|
|
} AngelConfigParserError;
|
|
|
|
LI_API gboolean angel_config_parse_file(server *srv, const gchar *filename, GError **err);
|
|
|
|
#endif
|