Home | History | Annotate | Download | only in include

Lines Matching refs:chtype

130 #define NCURSES_CH_T chtype
133 typedef unsigned chtype;
136 typedef unsigned long chtype;
228 NCURSES_WRAPPED_VAR(chtype*, acs_map);
231 extern NCURSES_EXPORT_VAR(chtype) acs_map[];
324 typedef chtype attr_t; /* ...must be at least as wide as chtype */
377 chtype _bkgd; /* current background char/attribute pair */
519 extern NCURSES_EXPORT(int) addch (const chtype); /* generated */
520 extern NCURSES_EXPORT(int) addchnstr (const chtype *, int); /* generated */
521 extern NCURSES_EXPORT(int) addchstr (const chtype *); /* generated */
533 extern NCURSES_EXPORT(int) bkgd (chtype); /* generated */
534 extern NCURSES_EXPORT(void) bkgdset (chtype); /* generated */
535 extern NCURSES_EXPORT(int) border (chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype); /* generated */
536 extern NCURSES_EXPORT(int) box (WINDOW *, chtype, chtype); /* generated */
560 extern NCURSES_EXPORT(int) echochar (const chtype); /* generated */
567 extern NCURSES_EXPORT(chtype) getbkgd (WINDOW *); /* generated */
576 extern NCURSES_EXPORT(int) hline (chtype, int); /* generated */
580 extern NCURSES_EXPORT(chtype) inch (void); /* generated */
581 extern NCURSES_EXPORT(int) inchnstr (chtype *, int); /* generated */
582 extern NCURSES_EXPORT(int) inchstr (chtype *); /* generated */
587 extern NCURSES_EXPORT(int) insch (chtype); /* generated */
604 extern NCURSES_EXPORT(int) mvaddch (int, int, const chtype); /* generated */
605 extern NCURSES_EXPORT(int) mvaddchnstr (int, int, const chtype *, int); /* generated */
606 extern NCURSES_EXPORT(int) mvaddchstr (int, int, const chtype *); /* generated */
616 extern NCURSES_EXPORT(int) mvhline (int, int, chtype, int); /* generated */
617 extern NCURSES_EXPORT(chtype) mvinch (int, int); /* generated */
618 extern NCURSES_EXPORT(int) mvinchnstr (int, int, chtype *, int); /* generated */
619 extern NCURSES_EXPORT(int) mvinchstr (int, int, chtype *); /* generated */
621 extern NCURSES_EXPORT(int) mvinsch (int, int, chtype); /* generated */
629 extern NCURSES_EXPORT(int) mvvline (int, int, chtype, int); /* generated */
630 extern NCURSES_EXPORT(int) mvwaddch (WINDOW *, int, int, const chtype); /* generated */
631 extern NCURSES_EXPORT(int) mvwaddchnstr (WINDOW *, int, int, const chtype *, int);/* generated */
632 extern NCURSES_EXPORT(int) mvwaddchstr (WINDOW *, int, int, const chtype *); /* generated */
640 extern NCURSES_EXPORT(int) mvwhline (WINDOW *, int, int, chtype, int); /* generated */
642 extern NCURSES_EXPORT(chtype) mvwinch (WINDOW *, int, int); /* generated */
643 extern NCURSES_EXPORT(int) mvwinchnstr (WINDOW *, int, int, chtype *, int); /* generated */
644 extern NCURSES_EXPORT(int) mvwinchstr (WINDOW *, int, int, chtype *); /* generated */
646 extern NCURSES_EXPORT(int) mvwinsch (WINDOW *, int, int, chtype); /* generated */
654 extern NCURSES_EXPORT(int) mvwvline (WINDOW *,int, int, chtype, int); /* generated */
671 extern NCURSES_EXPORT(int) pechochar (WINDOW *, const chtype); /* implemented */
697 extern NCURSES_EXPORT(int) slk_attroff (const chtype); /* implemented */
699 extern NCURSES_EXPORT(int) slk_attron (const chtype); /* implemented */
701 extern NCURSES_EXPORT(int) slk_attrset (const chtype); /* implemented */
719 extern NCURSES_EXPORT(chtype) termattrs (void); /* implemented */
728 extern NCURSES_EXPORT(int) vidattr (chtype); /* implemented */
729 extern NCURSES_EXPORT(int) vidputs (chtype, int (*)(int)); /* implemented */
730 extern NCURSES_EXPORT(int) vline (chtype, int); /* generated */
735 extern NCURSES_EXPORT(int) waddch (WINDOW *, const chtype); /* implemented */
736 extern NCURSES_EXPORT(int) waddchnstr (WINDOW *,const chtype *,int); /* implemented */
737 extern NCURSES_EXPORT(int) waddchstr (WINDOW *,const chtype *); /* generated */
747 extern NCURSES_EXPORT(int) wbkgd (WINDOW *, chtype); /* implemented */
748 chtype); /* implemented */
749 extern NCURSES_EXPORT(int) wborder (WINDOW *,chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype); /* implemented */
758 extern NCURSES_EXPORT(int) wechochar (WINDOW *, const chtype); /* implemented */
763 extern NCURSES_EXPORT(int) whline (WINDOW *, chtype, int); /* implemented */
764 extern NCURSES_EXPORT(chtype) winch (WINDOW *); /* implemented */
765 extern NCURSES_EXPORT(int) winchnstr (WINDOW *, chtype *, int); /* implemented */
766 extern NCURSES_EXPORT(int) winchstr (WINDOW *, chtype *); /* generated */
768 extern NCURSES_EXPORT(int) winsch (WINDOW *, chtype); /* implemented */
790 extern NCURSES_EXPORT(int) wvline (WINDOW *,chtype,int); /* implemented */
1065 #define mvwinch(win,y,x) (wmove(win,y,x) == ERR ? NCURSES_CAST(chtype, ERR) : winch(win))
1436 extern NCURSES_EXPORT(char *) _traceattr2 (int, chtype);
1439 extern NCURSES_EXPORT(char *) _tracechtype (chtype);
1440 extern NCURSES_EXPORT(char *) _tracechtype2 (int, chtype);