1 #ifndef _MOD_HTML2HDML_H
2 #define _MOD_HTML2HDML_H
3 
4 #ifdef ZODIAX_WITH_HTML2HDML
5 #define HTML2HDML_MOD_NAME "zhtml2hdml"
6 #else
7 #define HTML2HDML_MOD_NAME "html2hdml"
8 #endif
9 
10 typedef struct {
11   int state;
12   int header;
13   int post;
14   char *directory;
15   table *types;
16   table *uris_ignore;
17 } html2hdml_conf;
18 
19 extern void *html2hdml_create_dir_mconfig(pool *p, char *dir);
20 extern int html2hdml_handler(request_rec *r);
21 extern int html2hdml_fixup(request_rec *r);
22 
23 #endif /* _MOD_HTML2HDML_H */
24