blob: 776e3ec568970de5fbe62c7a810e5e39ad346744 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
void
RunSetup(rle_hdr * the_hdr);
void
RunSkipBlankLines(int nblank, rle_hdr * the_hdr);
void
RunSetColor(int c, rle_hdr * the_hdr);
void
RunSkipPixels(int nskip, int last, int wasrun, rle_hdr * the_hdr);
void
RunNewScanLine(int flag, rle_hdr * the_hdr);
void
Runputdata(rle_pixel * buf, int n, rle_hdr * the_hdr);
void
Runputrun(int color, int n, int last, rle_hdr * the_hdr);
void
RunputEof(rle_hdr * the_hdr);
|