1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-16 11:55:42 +00:00
mpv/gui/bitmap.h
diego e27d606714 Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved
for the system, names starting with _ are reserved at file level.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25635 b3059339-0415-0410-9bf9-f77b7e298cf2
2008-01-06 23:20:15 +00:00

17 lines
333 B
C

#ifndef GUI_BITMAP_H
#define GUI_BITMAP_H
typedef struct txSample
{
unsigned long Width;
unsigned long Height;
unsigned int BPP;
unsigned long ImageSize;
char * Image;
} txSample;
int bpRead( char * fname, txSample * bf );
void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
#endif /* GUI_BITMAP_H */