summaryrefslogtreecommitdiff
path: root/src/intmetrics.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-05-07 15:22:02 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-05-07 15:22:02 +0000
commita98d8fb5e49436c6fedea37797225293284b9894 (patch)
treef140662044f20668b937c9f3b451c56345678108 /src/intmetrics.h
downloadttf2f-a98d8fb5e49436c6fedea37797225293284b9894.tar.gz
ttf2f-a98d8fb5e49436c6fedea37797225293284b9894.tar.bz2
Import TTF2f. Don't expect this to link; I've prevented it building main.c.
svn path=/trunk/tools/ttf2f/; revision=7427
Diffstat (limited to 'src/intmetrics.h')
-rw-r--r--src/intmetrics.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/intmetrics.h b/src/intmetrics.h
new file mode 100644
index 0000000..0aaf1be
--- /dev/null
+++ b/src/intmetrics.h
@@ -0,0 +1,12 @@
+#ifndef _TTF2F_INTMETRICS_H_
+#define _TTF2F_INTMETRICS_H_
+
+struct glyph;
+struct font_metrics;
+
+void write_intmetrics(const char *savein, const char *name,
+ struct glyph *glyph_list, int list_size,
+ struct font_metrics *metrics,
+ void (*callback)(int progress));
+
+#endif