2007-07-02 22:34:45 +00:00
|
|
|
#ifndef GUI_BITMAP_H
|
|
|
|
#define GUI_BITMAP_H
|
2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
typedef struct _txSample
|
|
|
|
{
|
2003-02-01 08:42:52 +00:00
|
|
|
unsigned long Width;
|
|
|
|
unsigned long Height;
|
2001-08-25 21:04:29 +00:00
|
|
|
unsigned int BPP;
|
|
|
|
unsigned long ImageSize;
|
|
|
|
char * Image;
|
|
|
|
} txSample;
|
|
|
|
|
2007-05-02 16:17:16 +00:00
|
|
|
int bpRead( char * fname, txSample * bf );
|
|
|
|
void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
|
2001-08-25 21:04:29 +00:00
|
|
|
|
2007-07-02 22:34:45 +00:00
|
|
|
#endif /* GUI_BITMAP_H */
|