]> 4ch.mooo.com Git - 16.git/blob - 16/xlib/xline.h
16_ca needs huge amounts of work and I should remember what needs to be done soon...
[16.git] / 16 / xlib / xline.h
1 /*-----------------------------------------------------------------------\r
2 ;\r
3 ; XLINE - header file\r
4 ;\r
5 ;\r
6 ;\r
7 ; ****** XLIB - Mode X graphics library                ****************\r
8 ; ******                                               ****************\r
9 ; ****** Written By Themie Gouthas                     ****************\r
10 ;\r
11 ; egg@dstos3.dsto.gov.au\r
12 ; teg@bart.dsto.gov.au\r
13 ;\r
14 ;  Terminology & notes:\r
15 ;         VRAM ==   Video RAM\r
16 ;         SRAM ==   System RAM\r
17 ;         X coordinates are in pixels unless explicitly stated\r
18 ;\r
19 ;----------------------------------------------------------------------*/\r
20 \r
21 #ifndef _XLINE_H_\r
22 #define _XLINE_H_\r
23 \r
24 \r
25 /* FUNCTIONS =========================================================== */\r
26 \r
27 #ifdef __cplusplus\r
28 extern "C" {\r
29 #endif\r
30 \r
31 extern void x_line(     /* Draw a line, what else */\r
32          WORD x0,\r
33          WORD y0,\r
34          WORD x1,\r
35          WORD y1,\r
36          WORD color,\r
37          WORD PageBase);\r
38 \r
39 \r
40 #ifdef __cplusplus\r
41 }\r
42 #endif\r
43 \r
44 #endif\r
45 \r
46 \r