1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Configurable font quality on Windows. (Together with a little bit of

macro stuff to cope with the inadequacy of VC++ 6 headers.)

[originally from svn r6519]
This commit is contained in:
Owen Dunn
2006-01-11 23:42:02 +00:00
parent ad05f78303
commit dd924a644e
5 changed files with 46 additions and 2 deletions

View File

@ -324,6 +324,10 @@ enum {
FUNKY_SCO
};
enum {
FQ_DEFAULT, FQ_ANTIALIASED, FQ_NONANTIALIASED, FQ_CLEARTYPE
};
extern const char *const ttymodes[];
enum {
@ -502,6 +506,7 @@ struct config_tag {
int win_name_always;
int width, height;
FontSpec font;
int font_quality;
Filename logfilename;
int logtype;
int logxfovr;