diff options
| author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-09-17 21:54:25 +0000 |
|---|---|---|
| committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-09-17 21:54:25 +0000 |
| commit | a965a1759fb94830353f610a60887eff0cbcaf08 (patch) | |
| tree | 2d1920a6c762b684e47d8eb3fcede69bdebd3147 /ext/ncurses/php_ncurses_fe.h | |
| parent | bcb426a207baf037fd5a007e48be217bdb1a7c2b (diff) | |
| download | php-git-a965a1759fb94830353f610a60887eff0cbcaf08.tar.gz | |
some more function implementations
Diffstat (limited to 'ext/ncurses/php_ncurses_fe.h')
| -rw-r--r-- | ext/ncurses/php_ncurses_fe.h | 46 |
1 files changed, 38 insertions, 8 deletions
diff --git a/ext/ncurses/php_ncurses_fe.h b/ext/ncurses/php_ncurses_fe.h index b31faa8414..f7e8338379 100644 --- a/ext/ncurses/php_ncurses_fe.h +++ b/ext/ncurses/php_ncurses_fe.h @@ -21,18 +21,18 @@ #define PHP_NCURSES_FE_H PHP_FUNCTION(confirm_ncurses_compiled); /* For testing, remove later. */ -PHP_FUNCTION(ncurses_init); +PHP_FUNCTION(ncurses_addch); +PHP_FUNCTION(ncurses_color_set); +PHP_FUNCTION(ncurses_delwin); PHP_FUNCTION(ncurses_end); PHP_FUNCTION(ncurses_getch); -PHP_FUNCTION(ncurses_move); -PHP_FUNCTION(ncurses_addch); -PHP_FUNCTION(ncurses_refresh); PHP_FUNCTION(ncurses_has_colors); -PHP_FUNCTION(ncurses_start_color); -PHP_FUNCTION(ncurses_color_set); +PHP_FUNCTION(ncurses_init); PHP_FUNCTION(ncurses_init_pair); +PHP_FUNCTION(ncurses_move); PHP_FUNCTION(ncurses_newwin); -PHP_FUNCTION(ncurses_delwin); +PHP_FUNCTION(ncurses_refresh); +PHP_FUNCTION(ncurses_start_color); PHP_FUNCTION(ncurses_standout); PHP_FUNCTION(ncurses_standend); PHP_FUNCTION(ncurses_baudrate); @@ -48,7 +48,6 @@ PHP_FUNCTION(ncurses_delch); PHP_FUNCTION(ncurses_deleteln); PHP_FUNCTION(ncurses_doupdate); PHP_FUNCTION(ncurses_echo); -PHP_FUNCTION(ncurses_echochar); PHP_FUNCTION(ncurses_erase); PHP_FUNCTION(ncurses_erasechar); PHP_FUNCTION(ncurses_flash); @@ -81,6 +80,7 @@ PHP_FUNCTION(ncurses_attrset); PHP_FUNCTION(ncurses_bkgd); PHP_FUNCTION(ncurses_curs_set); PHP_FUNCTION(ncurses_delay_output); +PHP_FUNCTION(ncurses_echochar); PHP_FUNCTION(ncurses_halfdelay); PHP_FUNCTION(ncurses_has_key); PHP_FUNCTION(ncurses_insch); @@ -96,6 +96,7 @@ PHP_FUNCTION(ncurses_slk_init); PHP_FUNCTION(ncurses_typeahead); PHP_FUNCTION(ncurses_ungetch); PHP_FUNCTION(ncurses_vidattr); +PHP_FUNCTION(ncurses_wrefresh); PHP_FUNCTION(ncurses_use_extended_names); PHP_FUNCTION(ncurses_bkgdset); PHP_FUNCTION(ncurses_filter); @@ -103,4 +104,33 @@ PHP_FUNCTION(ncurses_noqiflush); PHP_FUNCTION(ncurses_qiflush); PHP_FUNCTION(ncurses_timeout); PHP_FUNCTION(ncurses_use_env); +PHP_FUNCTION(ncurses_addstr); +PHP_FUNCTION(ncurses_putp); +PHP_FUNCTION(ncurses_scr_dump); +PHP_FUNCTION(ncurses_scr_init); +PHP_FUNCTION(ncurses_scr_restore); +PHP_FUNCTION(ncurses_scr_set); +PHP_FUNCTION(ncurses_mvaddch); +PHP_FUNCTION(ncurses_mvaddchnstr); +PHP_FUNCTION(ncurses_addchnstr); +PHP_FUNCTION(ncurses_mvaddchstr); +PHP_FUNCTION(ncurses_addchstr); +PHP_FUNCTION(ncurses_mvaddnstr); +PHP_FUNCTION(ncurses_addnstr); +PHP_FUNCTION(ncurses_mvaddstr); +PHP_FUNCTION(ncurses_mvdelch); +PHP_FUNCTION(ncurses_mvgetch); +PHP_FUNCTION(ncurses_mvinch); +PHP_FUNCTION(ncurses_mvwaddstr); +PHP_FUNCTION(ncurses_insstr); +PHP_FUNCTION(ncurses_instr); +PHP_FUNCTION(ncurses_mvhline); +PHP_FUNCTION(ncurses_mvcur); +PHP_FUNCTION(ncurses_init_color); +PHP_FUNCTION(ncurses_border); +PHP_FUNCTION(ncurses_assume_default_colors); +PHP_FUNCTION(ncurses_define_key); +PHP_FUNCTION(ncurses_hline); +PHP_FUNCTION(ncurses_vline); +PHP_FUNCTION(ncurses_keyok); #endif |
