comparison src/macterm.h @ 54338:d037e941c800

Image consolidation: (struct mac_bitmap_record): Add file member. Not currently used, but simplifies code sharing.
author Kim F. Storm <storm@cua.dk>
date Thu, 11 Mar 2004 00:26:50 +0000
parents 6c8849d06ab3
children df306ddd8136
comparison
equal deleted inserted replaced
54337:f97e58d31d01 54338:d037e941c800
54 If REFCOUNT is 0 then this record is free to be reused. */ 54 If REFCOUNT is 0 then this record is free to be reused. */
55 55
56 struct mac_bitmap_record 56 struct mac_bitmap_record
57 { 57 {
58 char *bitmap_data; 58 char *bitmap_data;
59 char *file;
59 int refcount; 60 int refcount;
60 int height, width; 61 int height, width;
61 }; 62 };
62 63
63 64