Lines Matching refs:stdscr
101 extern WINDOW *stdscr, *curscr;
108 #define addch(ch) VOID(waddch(stdscr, ch))
109 #define getch() VOID(wgetch(stdscr))
110 #define addstr(str) VOID(waddstr(stdscr, str))
111 #define getstr(str) VOID(wgetstr(stdscr, str))
112 #define move(y, x) VOID(wmove(stdscr, y, x))
113 #define clear() VOID(wclear(stdscr))
114 #define erase() VOID(werase(stdscr))
115 #define clrtobot() VOID(wclrtobot(stdscr))
116 #define clrtoeol() VOID(wclrtoeol(stdscr))
117 #define insertln() VOID(winsertln(stdscr))
118 #define deleteln() VOID(wdeleteln(stdscr))
119 #define refresh() VOID(wrefresh(stdscr))
120 #define inch() VOID(winch(stdscr))
121 #define insch(c) VOID(winsch(stdscr, c))
122 #define delch() VOID(wdelch(stdscr))
123 #define standout() VOID(wstandout(stdscr))
124 #define standend() VOID(wstandend(stdscr))
141 #define mvaddch(y, x, ch) mvwaddch(stdscr, y, x, ch)
142 #define mvgetch(y, x) mvwgetch(stdscr, y, x)
143 #define mvaddstr(y, x, str) mvwaddstr(stdscr, y, x, str)
144 #define mvgetstr(y, x, str) mvwgetstr(stdscr, y, x, str)
145 #define mvinch(y, x) mvwinch(stdscr, y, x)
146 #define mvdelch(y, x) mvwdelch(stdscr, y, x)
147 #define mvinsch(y, x, c) mvwinsch(stdscr, y, x, c)