summaryrefslogtreecommitdiff
path: root/render/font.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-02-04 09:34:32 +0000
committerJames Bursa <james@netsurf-browser.org>2003-02-04 09:34:32 +0000
commit948dfeb1c2404e6bdad8c20c83a26f3eecb3764a (patch)
tree85878dac3866b577adb99c3c2d51691f763914db /render/font.h
parent30c5f817ba74c51578c62bfd7a558e3c982c84fc (diff)
downloadnetsurf-948dfeb1c2404e6bdad8c20c83a26f3eecb3764a.tar.gz
netsurf-948dfeb1c2404e6bdad8c20c83a26f3eecb3764a.tar.bz2
[project @ 2003-02-04 09:34:32 by bursa]
Remove obsolete files. svn path=/import/netsurf/; revision=95
Diffstat (limited to 'render/font.h')
-rw-r--r--render/font.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/render/font.h b/render/font.h
deleted file mode 100644
index 2ab98aaef..000000000
--- a/render/font.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * $Id: font.h,v 1.3 2002/06/18 21:24:21 bursa Exp $
- */
-
-/**
- * structures and typedefs
- */
-
-struct font_set;
-typedef unsigned int font_id;
-struct font_split {
- unsigned long width;
- unsigned long height;
- const char * end;
-};
-
-/**
- * interface
- */
-
-struct font_set * font_set_create(void);
-font_id font_add(struct font_set * font_set, const char * name, unsigned int weight,
- unsigned int size);
-void font_set_free(struct font_set * font_set);
-struct font_split font_split(struct font_set * font_set, font_id id, const char * text,
- unsigned long width, int force);
-unsigned long font_width(struct css_style * style, const char * text, unsigned int length);
-