[BACK]Return to bitmap.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot

Diff for /OpenXM_contrib/gnuplot/Attic/bitmap.h between version 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2000/01/09 17:00:49 version 1.1.1.2, 2000/01/22 14:15:54
Line 82  extern unsigned int b_pattern[];
Line 82  extern unsigned int b_pattern[];
 extern int b_maskcount;  extern int b_maskcount;
 extern unsigned int b_lastx, b_lasty;   /* last pixel set - used by b_line */  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" */  /* Prototypes from file "bitmap.c" */
   

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>