# HG changeset patch # User Jason Rumney # Date 1180572772 0 # Node ID 109057569e6e1c28a84395f1234a0f7cf143be48 # Parent 6d2559699bd08995a616d94385a3d2b00798c6ce (w32_output_data) [USE_FONT_BACKEND]: Add fontp member. (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h. diff -r 6d2559699bd0 -r 109057569e6e src/w32term.h --- a/src/w32term.h Thu May 31 00:48:07 2007 +0000 +++ b/src/w32term.h Thu May 31 00:52:52 2007 +0000 @@ -324,6 +324,10 @@ /* 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 @@ #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)