home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / cprog / cursesp.zip / WINTOUCH.C < prev   
C/C++ Source or Header  |  1991-12-02  |  2KB  |  42 lines

  1. /****************************************************************/
  2. /* Touchwin() routine of the PCcurses package                   */
  3. /*                                                              */
  4. /****************************************************************/
  5. /* This version of curses is based on ncurses, a curses version */
  6. /* originally written by Pavel Curtis at Cornell University.    */
  7. /* I have made substantial changes to make it run on IBM PC's,  */
  8. /* and therefore consider myself free to make it public domain. */
  9. /*              Bjorn Larsson (...mcvax!enea!infovax!bl)        */
  10. /****************************************************************/
  11. /* 1.0: Release:                                        870515  */
  12. /* 1.2: Max limits off by 1. Fixed thanks to S. Creps:  881002  */
  13. /* 1.3: MSC -W3, Turbo'C' -w -w-pro checkes:            881005  */
  14. /****************************************************************/
  15.  
  16. #include <curses.h>
  17. #include <curspriv.h>
  18.  
  19. char _curses_wintouch_rcsid[] = "@(#)wintouch.c v1.3 - 881005";
  20.  
  21. /****************************************************************/
  22. /* Touchwin() marks all lines of window 'win' as changed, from  */
  23. /* the first to the last character on the line.                 */
  24. /****************************************************************/
  25.  
  26. void touchwin(win)
  27.   WINDOW        *win;
  28.   {
  29.   int   y;
  30.   int  maxy;
  31.   int  maxx;
  32.  
  33.   maxy = win->_maxy - 1;
  34.   maxx = win->_maxx - 1;
  35.  
  36.   for (y = 0; y <= maxy; y++)
  37.     {
  38.     win->_minchng[y] = 0;
  39.     win->_maxchng[y] = maxx;
  40.     } /* for */
  41.   } /* touchwin */
  42.