From d5608581b926a28d738451ed7617354cbdaf4f7e Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 5 May 2012 15:58:17 +0000 Subject: 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 --- amiga/font_scan.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 amiga/font_scan.h (limited to 'amiga/font_scan.h') 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 + * + * 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 . + */ + +#ifndef AMIGA_FONT_SCAN_H +#define AMIGA_FONT_SCAN_H + +#include + +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 -- cgit v1.2.3