home *** CD-ROM | disk | FTP | other *** search
- /* cwin.h -- curses interface (cwin.c) */
-
- /* NOTICE
- *
- * Copyright (c) 1990,1992,1993 Britt Yenne. All rights reserved.
- *
- * This software is provided AS-IS. The author gives no warranty,
- * real or assumed, and takes no responsibility whatsoever for any
- * use or misuse of this software, or any damage created by its use
- * or misuse.
- *
- * This software may be freely copied and distributed provided that
- * no part of this NOTICE is deleted or edited in any manner.
- *
- */
-
- /* Mail comments or questions to ytalk@austin.eds.com */
-
- extern void init_curses ();
- extern void end_curses ();
- extern int open_curses ( /* yuser, title */ );
- extern void close_curses ( /* yuser */ );
- extern void addch_curses ( /* yuser, char */ );
- extern void move_curses ( /* yuser, y, x */ );
- extern void clreol_curses ( /* yuser */ );
- extern void clreos_curses ( /* yuser */ );
- extern void scroll_curses ( /* yuser */ );
- extern void flush_curses ( /* yuser */ );
- extern void redisplay_curses();
- extern void set_raw_curses();
- extern void set_cooked_curses();
-
- #ifndef getyx
- # define getyx(w,y,x) y = w->_cury, x = w->_curx
- #endif
-
- /* EOF */
-