1
0
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:
Ben Harris
1999-02-24 01:29:10 +00:00
parent ebff493cc8
commit eae4545aea
5 changed files with 131 additions and 138 deletions

View File

@ -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];