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

  1. NAME
  2.     wrefresh() wnoutrefresh() refresh() - update the physical screen  
  3.  
  4. SYNOPSIS
  5.     #include <curses.h>
  6.     #include <curspriv.h>
  7.  
  8.     void wrefresh(win)
  9.     WINDOW *win;
  10.  
  11.     void wnoutrefresh(win)
  12.     register WINDOW *win;
  13.  
  14.     void refresh()
  15.  
  16. DESCRIPTION
  17.     wrefresh() updates window win's area of the physical screen.  
  18.  
  19.     wnoutrefresh() updates the image of the desired screen,  
  20.     without doing physical update (copies window win's image to  
  21.     the _cursvar.tmpwin window, which is hidden from the user).  
  22.  
  23.     refresh() updates stdscr's area of the physical screen.  
  24.  
  25. EXAMPLES
  26.  
  27. SEE ALSO
  28.     doupdate();
  29.  
  30. BUGS
  31.