Home | History | Annotate | Download | only in include

Lines Matching refs:wattrset

755 extern NCURSES_EXPORT(int) wattrset (WINDOW *, int);			/* generated */
1088 #define wstandout(win) (wattrset(win,A_STANDOUT))
1089 #define wstandend(win) (wattrset(win,A_NORMAL))
1096 #define wattrset(win,at) ((win)->_color = PAIR_NUMBER(at), \
1099 #define wattrset(win,at) NCURSES_CAST(int, (win)->_attrs = (at))
1142 #define attrset(at) wattrset(stdscr,at)