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:
5
putty.h
5
putty.h
@ -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;
|
||||
|
Reference in New Issue
Block a user