From 47e420b58081680be9a4dd409bdbdee917bc5bd5 Mon Sep 17 00:00:00 2001 From: Jason Rumney Date: Thu, 31 May 2007 00:52:52 +0000 Subject: [PATCH] (w32_output_data) [USE_FONT_BACKEND]: Add fontp member. (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h. --- src/w32term.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/w32term.h b/src/w32term.h index 6a3f7267e25..52b6d9c9427 100644 --- a/src/w32term.h +++ b/src/w32term.h @@ -324,6 +324,10 @@ struct w32_output /* Default ASCII font of this frame. */ XFontStruct *font; +#ifdef USE_FONT_BACKEND + struct font *fontp; +#endif /* USE_FONT_BACKEND */ + /* The baseline offset of the default ASCII font. */ int baseline_offset; @@ -413,6 +417,10 @@ extern struct w32_output w32term_display; #define FRAME_FONTSET(f) ((f)->output_data.w32->fontset) #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.w32->baseline_offset) +#ifdef USE_FONT_BACKEND +#define FRAME_FONT_OBJECT(f) ((f)->output_data.w32->fontp) +#endif /* USE_FONT_BACKEND */ + /* This gives the w32_display_info structure for the display F is on. */ #define FRAME_W32_DISPLAY_INFO(f) (&one_w32_display_info) #define FRAME_X_DISPLAY_INFO(f) (&one_w32_display_info) -- 2.39.5