Lines Matching defs:chtype

191 typedef unsigned long chtype;
195 * These attributes and masks can be applied to a chtype.
213 * Colour atttribute support for chtype.
218 * Characters constants used with a chtype.
339 extern int __m_chtype_cc(chtype, cchar_t *);
340 extern chtype __m_cc_chtype(const cchar_t *);
384 extern int addch(chtype);
385 extern int addchnstr(const chtype *, int);
386 extern int addchstr(const chtype *);
390 extern int mvaddch(int, int, chtype);
391 extern int mvaddchnstr(int, int, const chtype *, int);
392 extern int mvaddchstr(int, int, const chtype *);
396 extern int mvwaddch(WINDOW *, int, int, chtype);
397 extern int mvwaddchnstr(WINDOW *, int, int, const chtype *, int);
398 extern int mvwaddchstr(WINDOW *, int, int, const chtype *);
402 extern int waddch(WINDOW *, chtype);
403 extern int waddchnstr(WINDOW *, const chtype *, int);
404 extern int waddchstr(WINDOW *, const chtype *);
444 extern chtype COLOR_PAIR(short);
445 extern short PAIR_NUMBER(chtype);
455 extern int bkgd(chtype);
456 extern int bkgdset(chtype);
457 extern chtype getbkgd(WINDOW *);
458 extern int wbkgd(WINDOW *, chtype);
459 extern int wbkgdset(WINDOW *, chtype);
469 chtype, chtype, chtype, chtype,
470 chtype, chtype, chtype, chtype);
476 extern int box(WINDOW *, chtype, chtype);
480 chtype, chtype, chtype, chtype,
481 chtype, chtype, chtype, chtype);
576 extern int echochar(chtype);
578 extern int wechochar(WINDOW *, chtype);
629 extern int hline(chtype, int);
631 extern int vline(chtype, int);
633 extern int mvhline(int, int, chtype, int);
635 extern int mvvline(int, int, chtype, int);
637 extern int mvwhline(WINDOW *, int, int, chtype, int);
639 extern int mvwvline(WINDOW *, int, int, chtype, int);
641 extern int whline(WINDOW *, chtype, int);
643 extern int wvline(WINDOW *, chtype, int);
646 extern chtype inch(void);
647 extern int inchnstr(chtype *, int);
648 extern int inchstr(chtype *);
652 extern chtype mvinch(int, int);
653 extern int mvinchnstr(int, int, chtype *, int);
654 extern int mvinchstr(int, int, chtype *);
658 extern chtype mvwinch(WINDOW *, int, int);
659 extern int mvwinchnstr(WINDOW *, int, int, chtype *, int);
660 extern int mvwinchstr(WINDOW *, int, int, chtype *);
664 extern chtype winch(WINDOW *);
665 extern int winchnstr(WINDOW *, chtype *, int);
666 extern int winchstr(WINDOW *, chtype *);
688 extern int insch(chtype);
690 extern int mvinsch(int, int, chtype);
692 extern int mvwinsch(WINDOW *, int, int, chtype);
694 extern int winsch(WINDOW *, chtype);
733 extern int pechochar(WINDOW *, chtype);
783 extern int slk_attroff(const chtype);
784 extern int slk_attron(const chtype);
785 extern int slk_attrset(const chtype);
805 extern chtype termattrs(void);
814 extern int vidattr(chtype);
816 extern int vidputs(chtype, int (*)(int));
879 #define COLOR_PAIR(n) ((chtype)(n)<<__COLOR_SHIFT)
880 #define PAIR_NUMBER(a) (((chtype)(a)&A_COLOR)>>__COLOR_SHIFT)