[BACK]Return to curses.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libcurses

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libcurses/curses.h between version 1.54 and 1.55

version 1.54, 2001/01/05 22:57:56 version 1.55, 2001/04/20 12:56:08
Line 472  extern char *ttytype;  /* Full name of c
Line 472  extern char *ttytype;  /* Full name of c
 #define move(y, x)                      wmove(stdscr, y, x)  #define move(y, x)                      wmove(stdscr, y, x)
 #define refresh()                       wrefresh(stdscr)  #define refresh()                       wrefresh(stdscr)
 #define scrl(n)                         wscrl(stdscr, n)  #define scrl(n)                         wscrl(stdscr, n)
   #define setscrreg(t, b)                 wsetscrreg(stdscr, t, b)
 #define standend()                      wstandend(stdscr)  #define standend()                      wstandend(stdscr)
 #define standout()                      wstandout(stdscr)  #define standout()                      wstandout(stdscr)
 #define timeout(delay)                  wtimeout(stdscr, delay)  #define timeout(delay)                  wtimeout(stdscr, delay)
Line 558  int  instr(char *);
Line 559  int  instr(char *);
 int      move(int, int);  int      move(int, int);
 int      refresh(void);  int      refresh(void);
 int      scrl(int);  int      scrl(int);
   int      setscrreg(int, int);
 int      standend(void);  int      standend(void);
 int      standout(void);  int      standout(void);
 void     timeout(int);  void     timeout(int);
Line 635  int  getmaxy(WINDOW *);
Line 637  int  getmaxy(WINDOW *);
 int      getmaxx(WINDOW *);  int      getmaxx(WINDOW *);
 int      gettmode(void);  int      gettmode(void);
 bool     has_colors(void);  bool     has_colors(void);
   bool     has_ic(void);
   bool     has_il(void);
 int      hline(chtype, int);  int      hline(chtype, int);
 int      idlok(WINDOW *, bool);  int      idlok(WINDOW *, bool);
 int      init_color(short, short, short, short);  int      init_color(short, short, short, short);
Line 737  int  wrefresh(WINDOW *);
Line 741  int  wrefresh(WINDOW *);
 int      wscanw(WINDOW *, const char *, ...)  int      wscanw(WINDOW *, const char *, ...)
                 __attribute__((__format__(__scanf__, 2, 3)));                  __attribute__((__format__(__scanf__, 2, 3)));
 int      wscrl(WINDOW *, int);  int      wscrl(WINDOW *, int);
   int      wsetscrreg(WINDOW *, int, int);
 int      wstandend(WINDOW *);  int      wstandend(WINDOW *);
 int      wstandout(WINDOW *);  int      wstandout(WINDOW *);
 void     wtimeout(WINDOW *, int);  void     wtimeout(WINDOW *, int);

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.55

CVSweb <webmaster@jp.NetBSD.org>