]> 4ch.mooo.com Git - 16.git/blob - 16/xlib/xpoint.h
more
[16.git] / 16 / xlib / xpoint.h
1 /*-----------------------------------------------------------------------\r
2 ;\r
3 ; XPOINT - 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 _XPOINT_H_\r
22 #define _XPOINT_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 \r
32  void x_put_pix(           /* Draw a pixel on the screen */\r
33              WORD X,\r
34              WORD Y,\r
35              WORD PageOffset,\r
36              WORD Color);\r
37 \r
38  WORD x_get_pix(          /* Read a pixel from the screen */\r
39              WORD X,\r
40              WORD Y,\r
41              WORD PageBase);\r
42 \r
43 \r
44 #ifdef __cplusplus\r
45 }\r
46 #endif\r
47 \r
48 \r
49 #endif\r
50 \r
51 \r