Home | History | Annotate | Download | only in include

Lines Matching refs:wattrset

742 extern NCURSES_EXPORT(int) wattrset (WINDOW *, int);			/* generated */
958 #define wstandout(win) (wattrset(win,A_STANDOUT))
959 #define wstandend(win) (wattrset(win,A_NORMAL))
966 #define wattrset(win,at) ((win)->_color = PAIR_NUMBER(at), \
969 #define wattrset(win,at) ((win)->_attrs = (at))
1012 #define attrset(at) wattrset(stdscr,at)