home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-03-13 | 569 b | 22 lines | [TEXT/KAHL] |
- /* Kevo -- a prototype-based object-oriented language */
- /* (c) Antero Taivalsaari 1991-1993 */
- /* Some parts (c) Antero Taivalsaari 1986-1988 */
- /* keybuf.h: Keyboard buffer operations */
-
- /*
- These operations are suited mainly to event-driven systems,
- and thus may not be needed in all implementations of Kevo.
- */
-
- /* Keyboard buffer interface */
-
- void putToKeyBuffer();
- void textToKeyBuffer();
- void crsToKeyBuffer();
- void numberToKeyBuffer();
- char getFromKeyBuffer();
- void removeFromKeyBuffer();
- void eraseKeyBuffer();
- char* lineAvailable();
-
-