Add mvw* functions.

This commit is contained in:
jdc 2003-05-21 20:33:21 +00:00
parent c87c28c18c
commit 416748f2db
1 changed files with 7 additions and 0 deletions

View File

@ -1646,5 +1646,12 @@ specification of a window, rather than the use of the default
.Fn wunderend "WINDOW *win"
.Fn wunderscore "WINDOW *win"
.Fn wvline "WINDOW *win" "chtype ch" "int count"
.Fn mvwaddch "WINDOW *win" "int y" "int x" "chtype ch"
.Fn mvwaddnstr "WINDOW *win" "int y" "int x" "char *str" "int len"
.Fn mvwaddstr "WINDOW *win" "int y" "int x" "char *str"
.Fn mvwgetnstr "WINDOW *win" "int y" "int x" "char *str" "int len"
.Fn mvwgetstr "WINDOW *win" "int y" "int x" "char *str"
.Fn mvwhline "WINDOW *win" "int y" "int x" "chtype ch" "int count"
.Fn mvwvline "WINDOW *win" "int y" "int x" "chtype ch" "int count"
.Dg