mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-06 22:12:47 -05:00
Now uses the Palette Manager for everything. Unfortunately this seems to
have killed colour entirely. It was working earlier today. Really! [originally from svn r60]
This commit is contained in:
5
putty.h
5
putty.h
@ -5,6 +5,7 @@
|
||||
|
||||
#ifdef macintosh
|
||||
#include <MacTypes.h>
|
||||
#include <Palettes.h>
|
||||
typedef UInt32 DWORD;
|
||||
struct mac_session;
|
||||
#endif /* macintosh */
|
||||
@ -147,7 +148,11 @@ typedef struct {
|
||||
/* Colour options */
|
||||
int try_palette;
|
||||
int bold_colour;
|
||||
#ifdef macintosh
|
||||
PaletteHandle colours;
|
||||
#else /* not macintosh */
|
||||
unsigned char colours[22][3];
|
||||
#endif /* not macintosh */
|
||||
/* Selection options */
|
||||
int mouse_is_xterm;
|
||||
short wordness[256];
|
||||
|
Reference in New Issue
Block a user