repo.or.cz
/
mplayer
/
greg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add explanatory comments to the #endif part of multiple inclusion guards.
[mplayer/greg.git]
/
gui
/
bitmap.h
blob
0e5a455ac5d976025e09357e81e9265f8d27837f
1
#ifndef GUI_BITMAP_H
2
#define GUI_BITMAP_H
3
4
typedef
struct
_txSample
5
{
6
unsigned long
Width
;
7
unsigned long
Height
;
8
unsigned int
BPP
;
9
unsigned long
ImageSize
;
10
char
*
Image
;
11
}
txSample
;
12
13
int
bpRead
(
char
*
fname
,
txSample
*
bf
);
14
void
Convert32to1
(
txSample
*
in
,
txSample
*
out
,
int
adaptivlimit
);
15
16
#endif
/* GUI_BITMAP_H */