Home | History | Annotate | Download | only in include

Lines Matching defs:getmaxy

850 extern NCURSES_EXPORT(int) getmaxy (const WINDOW *);			/* generated */
1059 #define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win))
1106 #define getmaxy(win) ((win) ? ((win)->_maxy + 1) : ERR)
1134 #define touchwin(win) wtouchln((win), 0, getmaxy(win), 1)
1136 #define untouchwin(win) wtouchln((win), 0, getmaxy(win), 0)