Subversion Repositories shark

Rev

Rev 3 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
#define memsetw(addr, val, n) {LIN_ADDR i;      for(i = addr; i < addr + n; i += 2) lmempokew(i, val);}
2
 
3
 
4
void RdWin_Hi(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
5
void linGet16(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
6
void WrWin_Hi(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
7
void linPut16(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
8
void ClrWin_Hi(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
9
void linBox16(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
10
void WrRect_Hi(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
11
void linRect16(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
12
void WrText_Hi(char *text, WORD x, WORD y, DWORD fg, DWORD bg);
13
void linText16(char *text, WORD x, WORD y, DWORD fg, DWORD bg);
14
void WrLine_Hi(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
15
void linLine16(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
16
void WrPixel_Hi(WORD x, WORD y, DWORD color);
17
void linWr16(WORD x, WORD y, DWORD color);
18
DWORD RdPixel_Hi(WORD x, WORD y);
19
DWORD linRd16(WORD x, WORD y);