Mercurial > mplayer.hg
annotate gui/bitmap.h @ 26003:a506a6ab14e1
Add standard license header and make copyright notices consistent.
author | diego |
---|---|
date | Tue, 19 Feb 2008 23:27:23 +0000 |
parents | 9d0b189ce1b2 |
children | 4129c8cfa742 |
rev | line source |
---|---|
23689
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23685
diff
changeset
|
1 #ifndef GUI_BITMAP_H |
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23685
diff
changeset
|
2 #define GUI_BITMAP_H |
23077 | 3 |
25607
9d0b189ce1b2
Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved
diego
parents:
23689
diff
changeset
|
4 typedef struct txSample |
23077 | 5 { |
6 unsigned long Width; | |
7 unsigned long Height; | |
8 unsigned int BPP; | |
9 unsigned long ImageSize; | |
10 char * Image; | |
11 } txSample; | |
12 | |
23194 | 13 int bpRead( char * fname, txSample * bf ); |
14 void Convert32to1( txSample * in,txSample * out,int adaptivlimit ); | |
23077 | 15 |
23689
3f0d00abc073
Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents:
23685
diff
changeset
|
16 #endif /* GUI_BITMAP_H */ |