[BACK]Return to curses_private.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_private.h between version 1.48 and 1.49

version 1.48, 2013/10/16 19:59:29 version 1.49, 2013/11/09 11:16:59
Line 99  struct __line {
Line 99  struct __line {
 #endif  #endif
 #define __ISDIRTY       0x01            /* Line is dirty. */  #define __ISDIRTY       0x01            /* Line is dirty. */
 #define __ISPASTEOL     0x02            /* Cursor is past end of line */  #define __ISPASTEOL     0x02            /* Cursor is past end of line */
   #define __ISFORCED      0x04            /* Force update, no optimisation */
         unsigned int flags;          unsigned int flags;
         unsigned int hash;              /* Hash value for the line. */          unsigned int hash;              /* Hash value for the line. */
         int *firstchp, *lastchp;        /* First and last chngd columns ptrs */          int *firstchp, *lastchp;        /* First and last chngd columns ptrs */
Line 290  int     __cputchar_args(int, void *);
Line 291  int     __cputchar_args(int, void *);
 void     _cursesi_free_keymap(keymap_t *);  void     _cursesi_free_keymap(keymap_t *);
 int      _cursesi_gettmode(SCREEN *);  int      _cursesi_gettmode(SCREEN *);
 void     _cursesi_reset_acs(SCREEN *);  void     _cursesi_reset_acs(SCREEN *);
 int     _cursesi_addbyte(WINDOW *, __LINE **, int *, int *, int , attr_t);  int     _cursesi_addbyte(WINDOW *, __LINE **, int *, int *, int , attr_t, int);
 int     _cursesi_addwchar(WINDOW *, __LINE **, int *, int *, const cchar_t *);  int     _cursesi_addwchar(WINDOW *, __LINE **, int *, int *, const cchar_t *,
                             int);
   int     _cursesi_waddbytes(WINDOW *, const char *, int, attr_t, int);
 #ifdef HAVE_WCHAR  #ifdef HAVE_WCHAR
 void     _cursesi_reset_wacs(SCREEN *);  void     _cursesi_reset_wacs(SCREEN *);
 #endif /* HAVE_WCHAR */  #endif /* HAVE_WCHAR */

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49

CVSweb <webmaster@jp.NetBSD.org>