diff options
author | Georg Richter <georg@php.net> | 2001-12-27 08:49:12 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2001-12-27 08:49:12 +0000 |
commit | 9c133dd23eeade2b1e88199a62bb892f74e3faa6 (patch) | |
tree | 03bb2841bc2c753dfad93eab4c70f59cdf4411ac /ext/ncurses/ncurses_fe.c | |
parent | e99c98a8f7e2da6a2613fd86245fc5dde8cc3926 (diff) | |
download | php-git-9c133dd23eeade2b1e88199a62bb892f74e3faa6.tar.gz |
Added new functions: ncurses_waddstr, ncurses_wnoutrefresh, ncurses_wclear,
ncurses_wcolorset, ncurses_wgetch, ncurses_keypad, ncurses_wmove
minor changes in protos.
Special Thanx to Mathieu Kooiman for submitting his patches!
Diffstat (limited to 'ext/ncurses/ncurses_fe.c')
-rw-r--r-- | ext/ncurses/ncurses_fe.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/ncurses/ncurses_fe.c b/ext/ncurses/ncurses_fe.c index a21641b260..769ba4fb6b 100644 --- a/ext/ncurses/ncurses_fe.c +++ b/ext/ncurses/ncurses_fe.c @@ -147,6 +147,13 @@ function_entry ncurses_functions[] = { PHP_FE(ncurses_termname, NULL) PHP_FE(ncurses_longname, NULL) PHP_FE(ncurses_mousemask, second_args_force_ref) + PHP_FE(ncurses_waddstr, NULL) + PHP_FE(ncurses_wnoutrefresh, NULL) + PHP_FE(ncurses_wclear, NULL) + PHP_FE(ncurses_wcolor_set, NULL) + PHP_FE(ncurses_wgetch, NULL) + PHP_FE(ncurses_keypad, NULL) + PHP_FE(ncurses_wmove, NULL) {NULL, NULL, NULL} /* Must be the last line in ncurses_functions[] */ }; |