1.1 --- a/bitblt.h Wed Mar 12 10:58:33 2003 +0000 1.2 +++ b/bitblt.h Wed Mar 12 10:59:09 2003 +0000 1.3 @@ -4,7 +4,7 @@ 1.4 * will be compressed using ITU-T T.6 (G4) fax encoding. 1.5 * 1.6 * bitblt routines 1.7 - * $Id: bitblt.h,v 1.15 2003/03/11 22:02:46 eric Exp $ 1.8 + * $Id: bitblt.h,v 1.16 2003/03/12 02:59:09 eric Exp $ 1.9 * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.10 * 1.11 * This program is free software; you can redistribute it and/or modify 1.12 @@ -47,17 +47,17 @@ 1.13 } 1.14 1.15 1.16 -/* word_type should be the largest native type that can be handled 1.17 +/* word_t should be the largest native type that can be handled 1.18 efficiently, so it shouldn't be a 64-bit type on a processor that 1.19 doesn't have native 64-bit operations. */ 1.20 -typedef uint32_t word_type; 1.21 -#define BITS_PER_WORD (8 * sizeof (word_type)) 1.22 +typedef uint32_t word_t; 1.23 +#define BITS_PER_WORD (8 * sizeof (word_t)) 1.24 #define ALL_ONES (~ 0UL) 1.25 1.26 1.27 typedef struct Bitmap 1.28 { 1.29 - word_type *bits; 1.30 + word_t *bits; 1.31 Rect rect; 1.32 uint32_t row_words; 1.33 } Bitmap;