OSDN Git Service

update todo list with new stuff
[proj16/16.git] / 16 / xlib / xfill.h
1 /*-----------------------------------------------------------------------\r
2 ;\r
3 ; XFILL - 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 _XFILL_H_\r
22 #define _XFILL_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 int x_flood_fill(int x,\r
32                  int y,\r
33                  unsigned ofs,\r
34                  int color\r
35                  );\r
36 \r
37 int x_boundary_fill(int x,\r
38                     int y,\r
39                     unsigned ofs,\r
40                     int boundary,\r
41                     int color\r
42                  );\r
43 \r
44 \r
45 #ifdef __cplusplus\r
46 }\r
47 #endif\r
48 \r
49 #endif\r
50 \r
51 \r