summaryrefslogtreecommitdiffstats
path: root/sqwebmail/html.h
diff options
context:
space:
mode:
authorSam Varshavchik2013-08-19 16:39:41 -0400
committerSam Varshavchik2013-08-25 14:43:51 -0400
commit9c45d9ad13fdf439d44d7443ae75da15ea0223ed (patch)
tree7a81a04cb51efb078ee350859a64be2ebc6b8813 /sqwebmail/html.h
parenta9520698b770168d1f33d6301463bb70a19655ec (diff)
downloadcourier-libs-9c45d9ad13fdf439d44d7443ae75da15ea0223ed.tar.bz2
Initial checkin
Imported from subversion report, converted to git. Updated all paths in scripts and makefiles, reflecting the new directory hierarchy.
Diffstat (limited to 'sqwebmail/html.h')
-rw-r--r--sqwebmail/html.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/sqwebmail/html.h b/sqwebmail/html.h
new file mode 100644
index 0000000..3f66376
--- /dev/null
+++ b/sqwebmail/html.h
@@ -0,0 +1,32 @@
+/*
+*/
+#ifndef html_h
+#define html_h
+
+#include "unicode/unicode.h"
+
+/*
+** Copyright 2011 Double Precision, Inc. See COPYING for
+** distribution information.
+*/
+
+struct htmlfilter_info;
+
+extern struct htmlfilter_info
+*htmlfilter_alloc(void (*)(const unicode_char *, size_t, void *), void *);
+extern void htmlfilter_free(struct htmlfilter_info *);
+
+extern void htmlfilter(struct htmlfilter_info *,
+ const unicode_char *, size_t);
+
+extern void htmlfilter_set_contentbase(struct htmlfilter_info *,
+ const char *);
+
+extern void htmlfilter_set_http_prefix(struct htmlfilter_info *,
+ const char *);
+extern void htmlfilter_set_mailto_prefix(struct htmlfilter_info *,
+ const char *);
+extern void htmlfilter_set_convertcid(struct htmlfilter_info *,
+ char *(*)(const char *, void *), void *);
+
+#endif