Lines Matching defs:chtype

198 typedef unsigned int	chtype;
200 typedef unsigned long chtype;
205 * These attributes and masks can be applied to a chtype.
239 * Color atttribute support for chtype.
244 * Characters constants used with a chtype.
352 extern int addch(chtype);
353 extern int addchnstr(const chtype *, int);
354 extern int addchstr(const chtype *);
371 extern int bkgd(chtype);
372 extern void bkgdset(chtype);
376 chtype, chtype, chtype, chtype,
377 chtype, chtype, chtype, chtype);
383 extern int box(WINDOW *, chtype, chtype);
409 extern int echochar(const chtype);
418 extern chtype getbkgd(WINDOW *);
432 extern int hline(chtype, int);
437 extern chtype inch(void);
438 extern int inchnstr(chtype *, int);
439 extern int inchstr(chtype *);
445 extern int insch(chtype);
471 extern int mvaddch(int, int, chtype);
472 extern int mvaddchnstr(int, int, const chtype *, int);
473 extern int mvaddchstr(int, int, const chtype *);
491 extern int mvhline(int, int, chtype, int);
493 extern chtype mvinch(int, int);
494 extern int mvinchnstr(int, int, chtype *, int);
495 extern int mvinchstr(int, int, chtype *);
498 extern int mvinsch(int, int, chtype);
511 extern int mvvline(int, int, chtype, int);
513 extern int mvwaddch(WINDOW *, int, int, chtype);
514 extern int mvwaddchnstr(WINDOW *, int, int, const chtype *, int);
515 extern int mvwaddchstr(WINDOW *, int, int, const chtype *);
531 extern int mvwhline(WINDOW *, int, int, chtype, int);
534 extern chtype mvwinch(WINDOW *, int, int);
535 extern int mvwinchnstr(WINDOW *, int, int, chtype *, int);
536 extern int mvwinchstr(WINDOW *, int, int, chtype *);
539 extern int mvwinsch(WINDOW *, int, int, chtype);
552 extern int mvwvline(WINDOW *, int, int, chtype, int);
570 extern int pechochar(WINDOW *, chtype);
598 extern int slk_attroff(const chtype);
600 extern int slk_attron(const chtype);
602 extern int slk_attrset(const chtype);
619 extern chtype termattrs(void);
631 extern int vidattr(chtype);
633 extern int vidputs(chtype, int (*)(int));
634 extern int vline(chtype, int);
640 extern int waddch(WINDOW *, const chtype);
641 extern int waddchnstr(WINDOW *, const chtype *, int);
642 extern int waddchstr(WINDOW *, const chtype *);
657 extern int wbkgd(WINDOW *, chtype);
658 extern void wbkgdset(WINDOW *, chtype);
662 chtype, chtype, chtype, chtype,
663 chtype, chtype, chtype, chtype);
677 extern int wechochar(WINDOW *, const chtype);
687 extern int whline(WINDOW *, chtype, int);
689 extern chtype winch(WINDOW *);
690 extern int winchnstr(WINDOW *, chtype *, int);
691 extern int winchstr(WINDOW *, chtype *);
694 extern int winsch(WINDOW *, chtype);
722 extern int wvline(WINDOW *, chtype, int);
730 extern chtype __cht1;
731 extern chtype __cht2;
815 #define COLOR_PAIR(n) ((chtype)(n) << __COLOR_SHIFT)
816 #define PAIR_NUMBER(a) (((chtype)(a) & A_COLOR) >> __COLOR_SHIFT)