home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8710 / pc-curses-doc / 4 / setscrreg.m < prev    next >
Encoding:
Text File  |  1993-09-02  |  495 b   |  29 lines

  1. NAME
  2.     wsetscrreg() setscrreg() - set scrolling region of window
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     int wsetscrreg(win, top, bottom)
  9.     WINDOW *win;
  10.     int top;
  11.     int bottom;
  12.  
  13.     int setscrreg(top, bottom)
  14.     int top;
  15.     int bottom;
  16.  
  17. DESCRIPTION
  18.     wsetscrreg() set the scrolling region of window 'win' to in-  
  19.     clude all lines between 'top' and 'bottom'.  
  20.  
  21.     setscrreg() set the scrolling region of stdscr to include  
  22.     all lines between 'top' and 'bottom'.  
  23.  
  24. EXAMPLES
  25.  
  26. SEE ALSO
  27.  
  28. BUGS
  29.