summaryrefslogtreecommitdiff
path: root/ext/ncurses/php_ncurses_fe.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2002-09-27 17:03:53 +0000
committerWez Furlong <wez@php.net>2002-09-27 17:03:53 +0000
commitdd6d22b6a103313aed54920f6927eb4439c3a493 (patch)
treede8237977032acba78fa268fc0c9bbeaedbd3f3b /ext/ncurses/php_ncurses_fe.h
parent69e677cda7dfa3c1b7b55aa8db5cfd247abc0a8f (diff)
downloadphp-git-dd6d22b6a103313aed54920f6927eb4439c3a493.tar.gz
Implement some more window routines, add pad functions.
Add panel functions when libpanel is also detected. Register STDSCR constant during ncurses_init().
Diffstat (limited to 'ext/ncurses/php_ncurses_fe.h')
-rw-r--r--ext/ncurses/php_ncurses_fe.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/ext/ncurses/php_ncurses_fe.h b/ext/ncurses/php_ncurses_fe.h
index 158e32fced..818cc5d995 100644
--- a/ext/ncurses/php_ncurses_fe.h
+++ b/ext/ncurses/php_ncurses_fe.h
@@ -148,6 +148,30 @@ PHP_FUNCTION(ncurses_wgetch);
PHP_FUNCTION(ncurses_keypad);
PHP_FUNCTION(ncurses_wmove);
+PHP_FUNCTION(ncurses_newpad);
+PHP_FUNCTION(ncurses_prefresh);
+PHP_FUNCTION(ncurses_pnoutrefresh);
+
+PHP_FUNCTION(ncurses_wstandout);
+PHP_FUNCTION(ncurses_wstandend);
+PHP_FUNCTION(ncurses_wattrset);
+PHP_FUNCTION(ncurses_wattron);
+PHP_FUNCTION(ncurses_wattroff);
+#if HAVE_NCURSES_PANEL
+PHP_FUNCTION(ncurses_update_panels);
+PHP_FUNCTION(ncurses_panel_window);
+PHP_FUNCTION(ncurses_panel_below);
+PHP_FUNCTION(ncurses_panel_above);
+PHP_FUNCTION(ncurses_replace_panel);
+PHP_FUNCTION(ncurses_move_panel);
+PHP_FUNCTION(ncurses_bottom_panel);
+PHP_FUNCTION(ncurses_top_panel);
+PHP_FUNCTION(ncurses_show_panel);
+PHP_FUNCTION(ncurses_hide_panel);
+PHP_FUNCTION(ncurses_del_panel);
+PHP_FUNCTION(ncurses_new_panel);
+#endif
+
#endif