comparison gui/bitmap.h @ 23689:3f0d00abc073

Do not use leading underscores in multiple inclusion guards, they are reserved.
author diego
date Mon, 02 Jul 2007 22:34:45 +0000
parents f15bce7943b9
children 9d0b189ce1b2
comparison
equal deleted inserted replaced
23688:3454aed9d083 23689:3f0d00abc073
1 #ifndef __GUI_BITMAP_H 1 #ifndef GUI_BITMAP_H
2 #define __GUI_BITMAP_H 2 #define GUI_BITMAP_H
3 3
4 typedef struct _txSample 4 typedef struct _txSample
5 { 5 {
6 unsigned long Width; 6 unsigned long Width;
7 unsigned long Height; 7 unsigned long Height;
11 } txSample; 11 } txSample;
12 12
13 int bpRead( char * fname, txSample * bf ); 13 int bpRead( char * fname, txSample * bf );
14 void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); 14 void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
15 15
16 #endif /* __GUI_BITMAP_H */ 16 #endif /* GUI_BITMAP_H */