[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.2 and 1.1.1.3

version 1.1.1.2, 2000/01/22 14:15:54 version 1.1.1.3, 2003/09/15 07:09:23
Line 32 
Line 32 
  * to the extent permitted by applicable law.   * to the extent permitted by applicable law.
 ]*/  ]*/
   
   #ifndef GNUPLOT_BITMAP_H
   # define GNUPLOT_BITMAP_H
   
 /* allow up to 16 bit width for character array */  /* allow up to 16 bit width for character array */
 typedef unsigned int char_row;  typedef unsigned int char_row;
Line 101  extern struct rgb web_color_rgbs[];
Line 103  extern struct rgb web_color_rgbs[];
 void b_makebitmap __PROTO((unsigned int x, unsigned int y, unsigned int planes));  void b_makebitmap __PROTO((unsigned int x, unsigned int y, unsigned int planes));
 void b_freebitmap __PROTO((void));  void b_freebitmap __PROTO((void));
 void b_setpixel __PROTO((unsigned int x, unsigned int y, unsigned int value));  void b_setpixel __PROTO((unsigned int x, unsigned int y, unsigned int value));
 /* unused unsigned int b_getpixel __PROTO((unsigned int x, unsigned int y)); */  unsigned int b_getpixel __PROTO((unsigned int x, unsigned int y));
 void b_line __PROTO((unsigned int x1, unsigned int y1, unsigned int x2, unsigned int y2));  void b_line __PROTO((unsigned int x1, unsigned int y1, unsigned int x2, unsigned int y2));
 void b_setmaskpixel __PROTO((unsigned int x, unsigned int y, unsigned int value));  void b_setmaskpixel __PROTO((unsigned int x, unsigned int y, unsigned int value));
 /* void b_putc __PROTO((unsigned int x, unsigned int y, char c, unsigned int angle)); */  /* void b_putc __PROTO((unsigned int x, unsigned int y, char c, unsigned int angle)); */
Line 113  void b_move __PROTO((unsigned int x, unsigned int y));
Line 115  void b_move __PROTO((unsigned int x, unsigned int y));
 void b_vector __PROTO((unsigned int x, unsigned int y));  void b_vector __PROTO((unsigned int x, unsigned int y));
 void b_put_text __PROTO((unsigned int x, unsigned int y, char *str));  void b_put_text __PROTO((unsigned int x, unsigned int y, char *str));
 int b_text_angle __PROTO((int ang));  int b_text_angle __PROTO((int ang));
   
   #endif /* GNUPLOT_BITMAP_H */

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

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