Lines Matching refs:wcs
793 #define waddstr(w, wcs) waddnstr(w, wcs, -1) argument
794 #define addnwstr(wcs, n) waddnwstr(stdscr, wcs, n) argument
795 #define addwstr(wcs) waddwstr(stdscr, wcs) argument
796 #define mvaddnwstr(y, x, wcs, n) \ argument
797 (move(y, x) ? (wcs, n, ERR) : addnwstr(wcs, n))
799 #define mvaddwstr(y, x, wcs) \ argument
800 (move(y, x) ? (wcs, ERR) : addwstr(wcs))
802 #define mvwaddnwstr(w, y, x, wcs, n) \ argument
803 (wmove(__w1 = (w), y, x) ? (wcs, n, ERR) :\
804 waddnwstr(__w1, wcs, n))
806 #define mvwaddwstr(w, y, x, wcs) \ argument
807 (wmove(__w1 = (w), y, x) ? (wcs, ERR) : waddwstr(__w1, wcs))
809 #define waddwstr(w, wcs) waddnwstr(w, wcs, -1) argument
910 #define getn_wstr(wcs, n) wgetn_wstr(stdscr, wcs, n) argument
911 #define get_wstr(wcs) wget_wstr(stdscr, wcs) argument
912 #define mvgetn_wstr(y, x, wcs, n) \ argument
913 (move(y, x) ? (wcs, n, ERR) : getn_wstr(wcs, n))
915 #define mvget_wstr(y, x, wcs) \ argument
916 (move(y, x) ? (wcs, ERR) : get_wstr(wcs))
918 #define mvwgetn_wstr(w, y, x, wcs, n) \ argument
919 (wmove(__w1 = (w), y, x) ? (wcs, n, ERR) :\
920 wgetn_wstr(__w1, wcs, n))
922 #define mvwget_wstr(w, y, x, wcs) \ argument
923 (wmove(__w1 = (w), y, x) ? (wcs, ERR) : wget_wstr(__w1, wcs))
925 #define wget_wstr(w, wcs) wgetn_wstr(w, wcs, -1) argument
1023 #define innwstr(wcs, n) winnwstr(stdscr, wcs, n) argument
1024 #define inwstr(wcs) winwstr(stdscr, wcs) argument
1025 #define mvinnwstr(y, x, wcs, n) \ argument
1026 (move(y, x) ? (wcs, n, ERR) : innwstr(wcs, n))
1028 #define mvinwstr(y, x, wcs) \ argument
1029 (move(y, x) ? (wcs, ERR) : inwstr(wcs))
1031 #define mvwinnwstr(w, y, x, wcs, n) \ argument
1032 (wmove(__w1 = (w), y, x) ? (wcs, n, ERR) :\
1033 winnwstr(__w1, wcs, n))
1035 #define mvwinwstr(w, y, x, wcs) \ argument
1036 (wmove(__w1 = (w), y, x) ? (wcs, ERR) : winwstr(__w1, wcs))
1038 #define winwstr(w, wcs) (winnwstr(w, wcs, -1), OK) argument
1060 #define ins_nwstr(wcs, n) wins_nwstr(stdscr, wcs, n) argument
1061 #define ins_wstr(wcs) wins_wstr(stdscr, wcs) argument
1062 #define mvins_nwstr(y, x, wcs, n) \ argument
1063 (move(y, x) ? (wcs, n, ERR) : ins_nwstr(wcs, n))
1065 #define mvins_wstr(y, x, wcs) (move(y, x) ? (wcs, ERR) : ins_wstr(wcs)) argument
1066 #define mvwins_nwstr(w, y, x, wcs, n) \ argument
1067 (wmove(__w1 = (w), y, x) ? (wcs, n, ERR) : wins_nwstr(__w1, wcs, n))
1069 #define mvwins_wstr(w, y, x, wcs) \ argument
1070 (wmove(__w1 = (w), y, x) ? (wcs, ERR) : wins_wstr(__w1, wcs))
1072 #define wins_wstr(w, wcs) wins_nwstr(w, wcs, -1) argument