# HG changeset patch # User Kim F. Storm # Date 1076714963 0 # Node ID 8970999f9bccec88c1d4d9222f4604d71a9bf205 # Parent 4dd0e0a7fd9e2ab096c1d4c2d41fcfe34080fa1f (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. diff -r 4dd0e0a7fd9e -r 8970999f9bcc src/dispextern.h --- 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));