Use correct printf length modifiers, fixes the following warnings:
[mplayer/greg.git] / gui / bitmap.h
blob0e5a455ac5d976025e09357e81e9265f8d27837f
1 #ifndef GUI_BITMAP_H
2 #define GUI_BITMAP_H
4 typedef struct _txSample
6 unsigned long Width;
7 unsigned long Height;
8 unsigned int BPP;
9 unsigned long ImageSize;
10 char * Image;
11 } txSample;
13 int bpRead( char * fname, txSample * bf );
14 void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
16 #endif /* GUI_BITMAP_H */