1 /*
2  * File: abclib.h
3  * Part of the ABClock package
4  * (c) Peter Kleiweg
5  *
6  * 2000/08/15: version 1.0
7  * 2000/08/06: version 0.9
8  * 2000/08/04: version 0.1
9  *
10  * This is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as
12  * published by the Free Software Foundation; either version 2,
13  * or (at your option) any later version.
14  *
15  */
16 
17 #ifndef _ABC_LIB_H_
18 #define _ABC_LIB_H_
19 
20 #define ABC_MINSIZE 21
21 
22 void
23     ABC_Make (int hour, int min, int sec, int width, int height, int border),
24     ABC_SetColor (int color),
25     ABC_Rect (int x1, int y1, int x2, int y2);
26 
27 #endif  /* _ABC_LIB_H_ */
28