Home | History | Annotate | Download | only in include

Lines Matching defs:getmaxy

816 extern NCURSES_EXPORT(int) getmaxy (const WINDOW *);			/* generated */
910 #define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win))
953 #define getmaxy(win) ((win) ? ((win)->_maxy + 1) : ERR)
975 #define touchwin(win) wtouchln((win), 0, getmaxy(win), 1)
977 #define untouchwin(win) wtouchln((win), 0, getmaxy(win), 0)