summaryrefslogtreecommitdiff
path: root/src/intmetrics.h
blob: ec1caf09506d39523f32bb37df89ff9efef68c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _TTF2F_INTMETRICS_H_
#define _TTF2F_INTMETRICS_H_

#include "utils.h"

struct glyph;
struct font_metrics;

ttf2f_result intmetrics_write(const char *savein,
		const char *name, const struct glyph *glyph_list, 
		int list_size, const struct font_metrics *metrics,
		void (*callback)(int progress));

#endif