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