diff options
author | Andrew Innes <andrewi@gnu.org> | 2000-02-06 23:37:47 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2000-02-06 23:37:47 +0000 |
commit | 0052a264ee303067f580920cd1487b120886bd46 (patch) | |
tree | 4eba39230b9e1236d6aaefbf61d1dbeb302fa303 /src/w32gui.h | |
parent | a9b4e0ec68b2e5a6981cb5ac397a0dd878fe05c5 (diff) |
(struct W32FontStruct): Add ascent and descent slots.
Diffstat (limited to 'src/w32gui.h')
-rw-r--r-- | src/w32gui.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/w32gui.h b/src/w32gui.h index dc5dfc0088..45eae8583d 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; |