=================================================================== RCS file: /home/cvs/OpenXM_contrib/gnuplot/Attic/bitmap.h,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.2 diff -u -p -r1.1.1.1 -r1.1.1.2 --- OpenXM_contrib/gnuplot/Attic/bitmap.h 2000/01/09 17:00:49 1.1.1.1 +++ OpenXM_contrib/gnuplot/Attic/bitmap.h 2000/01/22 14:15:54 1.1.1.2 @@ -1,4 +1,4 @@ -/* $Id: bitmap.h,v 1.1.1.1 2000/01/09 17:00:49 maekawa Exp $ */ +/* $Id: bitmap.h,v 1.1.1.2 2000/01/22 14:15:54 maekawa Exp $ */ /* GNUPLOT - bitmap.h */ @@ -81,6 +81,19 @@ extern char_box b_font[FNT_CHARS]; /* the current fon extern unsigned int b_pattern[]; extern int b_maskcount; extern unsigned int b_lastx, b_lasty; /* last pixel set - used by b_line */ + +/* RGB colour table moved out of gif.trm */ +/* + * Common RGB color table for use by all devices. + * It's a subset of the 216-color Web palette. + */ +#define WEB_N_COLORS 99 +struct rgb +{ + unsigned char r, g, b; +}; + +extern struct rgb web_color_rgbs[]; /* Prototypes from file "bitmap.c" */