Subversion Repositories shark

Rev

Rev 3 | Rev 1063 | 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
#define memsetw(addr, val, n) {LIN_ADDR i;      for(i = addr; i < addr + n; i += 2) lmempokew(i, val);}
5
 
6
 
7
void RdWin_Hi(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
8
void linGet16(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
9
void WrWin_Hi(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
10
void linPut16(WORD x1, WORD y1, WORD x2, WORD y2, BYTE *buf);
11
void ClrWin_Hi(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
12
void linBox16(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
13
void WrRect_Hi(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
14
void linRect16(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
15
void WrText_Hi(char *text, WORD x, WORD y, DWORD fg, DWORD bg);
16
void linText16(char *text, WORD x, WORD y, DWORD fg, DWORD bg);
17
void WrLine_Hi(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
18
void linLine16(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color);
19
void WrPixel_Hi(WORD x, WORD y, DWORD color);
20
void linWr16(WORD x, WORD y, DWORD color);
21
DWORD RdPixel_Hi(WORD x, WORD y);
22
DWORD linRd16(WORD x, WORD y);
80 pj 23
__END_DECLS