comparison gui/bitmap.h @ 23194:41bbba7c3850

Remove useless extern before function prototypes
author reimar
date Wed, 02 May 2007 16:17:16 +0000
parents 17bf4f4b0715
children 019bfce0c0dc
comparison
equal deleted inserted replaced
23193:7857af1ca50b 23194:41bbba7c3850
8 unsigned int BPP; 8 unsigned int BPP;
9 unsigned long ImageSize; 9 unsigned long ImageSize;
10 char * Image; 10 char * Image;
11 } txSample; 11 } txSample;
12 12
13 extern int bpRead( char * fname, txSample * bf ); 13 int bpRead( char * fname, txSample * bf );
14 extern int conv24to32( txSample * bf ); 14 int conv24to32( txSample * bf );
15 extern void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); 15 void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
16 extern void Convert1to32( txSample * in,txSample * out ); 16 void Convert1to32( txSample * in,txSample * out );
17 17
18 #endif /* __BITMAP_H */ 18 #endif /* __BITMAP_H */