Lines Matching refs:VOID
103 #define VOID(x) (x)
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))
129 #define mvwaddch(win, y, x, ch) VOID(wmove(win, y, x) == ERR ? \
131 #define mvwgetch(win, y, x) VOID(wmove(win, y, x) == ERR?ERR:wgetch(win))
132 #define mvwaddstr(win, y, x, str) VOID(wmove(win, y, x) == ERR? \
134 #define mvwgetstr(win, y, x, str) VOID(wmove(win, y, x) == ERR? \
136 #define mvwinch(win, y, x) VOID(wmove(win, y, x) == ERR ? ERR : winch(win))
137 #define mvwdelch(win, y, x) VOID(wmove(win, y, x) == ERR ? \
139 #define mvwinsch(win, y, x, c) VOID(wmove(win, y, x) == ERR ? \