Rev 3 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
80 | pj | 1 | #include "ll/sys/cdefs.h" |
2 | |||
3 | __BEGIN_DECLS |
||
2 | pj | 4 | void RdWin_256(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf); |
5 | void linGet8(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf); |
||
6 | void WrWin_256(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf); |
||
7 | void linPut8(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf); |
||
8 | void ClrWin_256(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color); |
||
9 | void linBox8(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color); |
||
10 | void WrRect_256(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color); |
||
11 | void linRect8(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color); |
||
12 | void WrText_256(char *text, WORD x, WORD y, DWORD fg, DWORD bg); |
||
13 | void linText8(char *text, WORD x, WORD y, DWORD fg, DWORD bg); |
||
14 | void WrLine_256(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color); |
||
15 | void linLine8(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color); |
||
16 | void WrPixel_256(WORD x, WORD y, DWORD color); |
||
17 | void linWr8(WORD x, WORD y, DWORD color); |
||
18 | DWORD RdPixel_256(WORD x, WORD y); |
||
19 | DWORD linRd8(WORD x, WORD y); |
||
80 | pj | 20 | __END_DECLS |