From: Andrew Innes Date: Sun, 6 Feb 2000 23:37:47 +0000 (+0000) Subject: (struct W32FontStruct): Add ascent and descent slots. X-Git-Tag: emacs-pretest-21.0.90~5077 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0052a264ee303067f580920cd1487b120886bd46;p=emacs.git (struct W32FontStruct): Add ascent and descent slots. --- diff --git a/src/w32gui.h b/src/w32gui.h index dc5dfc0088a..45eae8583d2 100644 --- a/src/w32gui.h +++ b/src/w32gui.h @@ -28,6 +28,8 @@ typedef struct W32FontStruct { TEXTMETRIC tm; HFONT hfont; bdffont *bdf; + int ascent; + int descent; } W32FontStruct; typedef struct W32FontStruct XFontStruct;