Lines Matching refs:chtype

196 typedef unsigned int	chtype;  typedef
198 typedef unsigned long chtype; typedef
350 extern int addch(chtype);
351 extern int addchnstr(const chtype *, int);
352 extern int addchstr(const chtype *);
369 extern int bkgd(chtype);
370 extern void bkgdset(chtype);
374 chtype, chtype, chtype, chtype,
375 chtype, chtype, chtype, chtype);
381 extern int box(WINDOW *, chtype, chtype);
407 extern int echochar(const chtype);
416 extern chtype getbkgd(WINDOW *);
430 extern int hline(chtype, int);
435 extern chtype inch(void);
436 extern int inchnstr(chtype *, int);
437 extern int inchstr(chtype *);
443 extern int insch(chtype);
469 extern int mvaddch(int, int, chtype);
470 extern int mvaddchnstr(int, int, const chtype *, int);
471 extern int mvaddchstr(int, int, const chtype *);
489 extern int mvhline(int, int, chtype, int);
491 extern chtype mvinch(int, int);
492 extern int mvinchnstr(int, int, chtype *, int);
493 extern int mvinchstr(int, int, chtype *);
496 extern int mvinsch(int, int, chtype);
509 extern int mvvline(int, int, chtype, int);
511 extern int mvwaddch(WINDOW *, int, int, chtype);
512 extern int mvwaddchnstr(WINDOW *, int, int, const chtype *, int);
513 extern int mvwaddchstr(WINDOW *, int, int, const chtype *);
529 extern int mvwhline(WINDOW *, int, int, chtype, int);
532 extern chtype mvwinch(WINDOW *, int, int);
533 extern int mvwinchnstr(WINDOW *, int, int, chtype *, int);
534 extern int mvwinchstr(WINDOW *, int, int, chtype *);
537 extern int mvwinsch(WINDOW *, int, int, chtype);
550 extern int mvwvline(WINDOW *, int, int, chtype, int);
568 extern int pechochar(WINDOW *, chtype);
596 extern int slk_attroff(const chtype);
598 extern int slk_attron(const chtype);
600 extern int slk_attrset(const chtype);
617 extern chtype termattrs(void);
629 extern int vidattr(chtype);
631 extern int vidputs(chtype, int (*)(int));
632 extern int vline(chtype, int);
638 extern int waddch(WINDOW *, const chtype);
639 extern int waddchnstr(WINDOW *, const chtype *, int);
640 extern int waddchstr(WINDOW *, const chtype *);
655 extern int wbkgd(WINDOW *, chtype);
656 extern void wbkgdset(WINDOW *, chtype);
660 chtype, chtype, chtype, chtype,
661 chtype, chtype, chtype, chtype);
675 extern int wechochar(WINDOW *, const chtype);
685 extern int whline(WINDOW *, chtype, int);
687 extern chtype winch(WINDOW *);
688 extern int winchnstr(WINDOW *, chtype *, int);
689 extern int winchstr(WINDOW *, chtype *);
692 extern int winsch(WINDOW *, chtype);
720 extern int wvline(WINDOW *, chtype, int);
728 extern chtype __cht1;
729 extern chtype __cht2;
813 #define COLOR_PAIR(n) ((chtype)(n) << __COLOR_SHIFT)
814 #define PAIR_NUMBER(a) (((chtype)(a) & A_COLOR) >> __COLOR_SHIFT)