changeset 53937:8970999f9bcc

(struct draw_fringe_bitmap_params): Change member bits from char to short to facilitate wider bitmaps. (struct redisplay_interface): Fix prototype of define_fringe_bitmap member.
author Kim F. Storm <storm@cua.dk>
date Fri, 13 Feb 2004 23:29:23 +0000
parents 4dd0e0a7fd9e
children cdae1edd8e33
files src/dispextern.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/dispextern.h	Fri Feb 13 23:28:52 2004 +0000
+++ b/src/dispextern.h	Fri Feb 13 23:29:23 2004 +0000
@@ -1641,7 +1641,7 @@
 struct draw_fringe_bitmap_params
 {
   int which;  /* enum fringe_bitmap_type */
-  unsigned char *bits;
+  unsigned short *bits;
   int wd, h, dh;
   int x, y;
   int bx, nx, by, ny;
@@ -2189,7 +2189,7 @@
 				  struct draw_fringe_bitmap_params *p));
 
   /* Define and destroy fringe bitmap no. WHICH.  */
-  void (*define_fringe_bitmap) P_ ((int which, unsigned char *bits,
+  void (*define_fringe_bitmap) P_ ((int which, unsigned short *bits,
 				    int h, int wd));
   void (*destroy_fringe_bitmap) P_ ((int which));