From 7a9ef2ed880e2d5a456f18d5d6026f6c29454f95 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 14 May 2008 01:04:21 +0000 Subject: [PATCH] (struct w32font_info): New member. (FONT_COMPAT): New macro. (w32font_open_internal): Prototype adjusted. --- src/w32font.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/w32font.h b/src/w32font.h index 6345d59c71f..8aba6a3e6d5 100644 --- a/src/w32font.h +++ b/src/w32font.h @@ -55,8 +55,11 @@ struct w32font_info unsigned int glyph_idx; struct w32_metric_cache **cached_metrics; int n_cache_blocks; + W32FontStruct *compat_w32_font; }; +#define FONT_COMPAT(f) (((struct w32font_info *) (f))->compat_w32_font) + #define CACHE_BLOCKSIZE 128 Lisp_Object w32font_get_cache P_ ((FRAME_PTR fe)); @@ -67,7 +70,7 @@ Lisp_Object w32font_match_internal P_ ((Lisp_Object frame, Lisp_Object font_spec, int opentype_only)); int w32font_open_internal P_ ((FRAME_PTR f, Lisp_Object font_entity, - int pixel_size, struct w32font_info *w32_font)); + int pixel_size, Lisp_Object font_object)); void w32font_close P_ ((FRAME_PTR f, struct font *font)); int w32font_has_char P_ ((Lisp_Object entity, int c)); int w32font_text_extents P_ ((struct font *font, unsigned *code, int nglyphs, -- 2.39.5