home *** CD-ROM | disk | FTP | other *** search
- /* fv is a binary file editor written by Chris Hooper (cdh@mtu.edu)
- * on 6-2-91 and has gone through many revisions since then.
- * Much inspiration was given by Bill Moore, the first real user!
- * Owner: CHRISTOPHER D HOOPER
- *
- * fv source Copyright (c) 1992 - 1998 Chris Hooper
- *
- * Modification and redistribution is strictly prohibited.
- * Sale of this software above media cost is prohibited.
- *
- * Except for above two restrictions, this software may be used for
- * any purpose, commercial and private.
- *
- * Disclaimer: This product is fit for no use, foreign or domestic.
- * Use implies knowledge you intend to destroy something.
- */
-
- #ifndef PRIVATE_CURSES
- #define PRIVATE_CURSES
-
- #ifdef OS9
- # undef wstandout
- # undef wstandend
- #endif
-
- #if !defined(Linux) && !defined(__FreeBSD__)
- # define lwaddstr waddstr
- #endif
-
- #if !defined(Win32)
- # define lwclear wclear
- # define lwaddch waddch
- # define ltouchwin touchwin
- # define lwstandout wstandout
- # define lwstandend wstandend
- #endif
-
- /* curses calls which are not declared in curses.h for some unknown reason */
- int lwaddstr();
- int lwclear();
- int lwaddch();
- int ltouchwin();
-
- int wgetch();
- int endwin();
- int delwin();
- int wmove();
- int wrefresh();
- int wclrtobot();
- int wclrtoeol();
-
- #if !defined(Amiga)
- int lwstandout();
- int lwstandend();
- #endif
-
- #endif
-