summaryrefslogtreecommitdiff
path: root/amiga/font_scan.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-05-05 15:58:17 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-05-05 15:58:17 +0000
commitd5608581b926a28d738451ed7617354cbdaf4f7e (patch)
treeef27a8d49d7592032135503dafc54a7a399c44ab /amiga/font_scan.h
parent59f8e0043460d4f353d974cd122c498e3d699f1b (diff)
downloadnetsurf-d5608581b926a28d738451ed7617354cbdaf4f7e.tar.gz
netsurf-d5608581b926a28d738451ed7617354cbdaf4f7e.tar.bz2
Integrate Unicode font scanner into NetSurf.
NetSurf will now use any available font when trying to print characters that are missing from the current font. TODO: Preferred font list. svn path=/trunk/netsurf/; revision=13905
Diffstat (limited to 'amiga/font_scan.h')
-rwxr-xr-xamiga/font_scan.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/amiga/font_scan.h b/amiga/font_scan.h
new file mode 100755
index 000000000..8b0ecc7ce
--- /dev/null
+++ b/amiga/font_scan.h
@@ -0,0 +1,29 @@
+/*
+ * Copyright 2012 Chris Young <chris@unsatisfactorysoftware.co.uk>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef AMIGA_FONT_SCAN_H
+#define AMIGA_FONT_SCAN_H
+
+#include <libwapcaplet/libwapcaplet.h>
+
+void ami_font_scan_init(const char *filename, struct MinList *list,
+ lwc_string **glypharray);
+void ami_font_scan_fini(lwc_string **glypharray);
+const char *ami_font_scan_lookup(uint16 code, lwc_string **glypharray);
+
+#endif