chiark / gitweb /
Create readable text `.bas' for each tokenized BASIC `,ffb' file.
[ssr] / StraySrc / Libraries / Steel / h / blinkC
1 /*
2  * BlinkCursor
3  *  A nice blinky caret routine for your progs
4  *
5  * v. 1.00 (23 July 1991)
6  *
7  * © 1991-1998 Straylight
8  */
9
10 /*----- Licensing note ----------------------------------------------------*
11  *
12  * This file is part of Straylight's Steel library.
13  *
14  * Steel is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2, or (at your option)
17  * any later version.
18  *
19  * Steel is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with Steel.  If not, write to the Free Software Foundation,
26  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27  */
28
29 #ifndef __blinkCursor_h
30 #define __blinkCursor_h
31
32 #ifndef TRUE
33 #define BOOL int;
34 #define TRUE 1
35 #define FALSE 0
36 #endif
37
38 /*
39  * void blinkCursor(BOOL onOrOff)
40  *
41  * Use
42  *  Turns the blinkingness of the cursor on or off.  You must call
43  *  alarm_init() before this function, or all hell breaks loose.
44  *
45  * Parameters
46  *  BOOL onOrOff == whether you want to turn blinking cursor on or off
47  */
48
49 void blinkCursor(BOOL onOrOff);
50
51 /*
52  * void blink_init(void)
53  *
54  * Use
55  *  Sets everything up nicely.
56  */
57
58 void blink_init(void);
59
60 #endif