aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2000-05-30 21:24:04 +0000
committerJason Rumney2000-05-30 21:24:04 +0000
commitb40b05b6feb25f38ca7b2319b7bbb1c6295b357d (patch)
treea59a3c76c8a52079b8e02a29caab1cb126a17791 /src
parent2dfda9629392dcbbab91366c34efaa63b5730d49 (diff)
downloademacs-b40b05b6feb25f38ca7b2319b7bbb1c6295b357d.tar.gz
emacs-b40b05b6feb25f38ca7b2319b7bbb1c6295b357d.zip
(struct glyph) [WINDOWSNT]: Add w32_font_type member.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index a594334ccb1..68334438676 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -282,6 +282,14 @@ struct glyph
282 /* Face of the glyph. */ 282 /* Face of the glyph. */
283 unsigned face_id : 22; 283 unsigned face_id : 22;
284 284
285#ifdef WINDOWSNT
286 /* Type of font used to display the character glyph. Used to
287 determine which set of functions to use to obtain font metrics
288 for the glyph. Value should be an enumerator of the type
289 w32_char_font_type. */
290 unsigned w32_font_type : 2;
291#endif
292
285 /* A union of sub-structures for different glyph types. */ 293 /* A union of sub-structures for different glyph types. */
286 union 294 union
287 { 295 {