diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2003-03-17 13:11:19 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2003-03-17 13:11:19 +0000 |
commit | dbe4f2238ceed386a69cacbbce5cae8b0a856fab (patch) | |
tree | 2cdaa5fa3b020df4d9699f847db7ca2c93ce3680 /ext/ncurses/ncurses_functions.c | |
parent | fa692f6744ce137a8a996124acb797b67885443e (diff) | |
download | php-git-dbe4f2238ceed386a69cacbbce5cae8b0a856fab.tar.gz |
proto fixes
Diffstat (limited to 'ext/ncurses/ncurses_functions.c')
-rw-r--r-- | ext/ncurses/ncurses_functions.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/ncurses/ncurses_functions.c b/ext/ncurses/ncurses_functions.c index 89c82024e0..a03c9fa3a2 100644 --- a/ext/ncurses/ncurses_functions.c +++ b/ext/ncurses/ncurses_functions.c @@ -2113,7 +2113,7 @@ PHP_FUNCTION(ncurses_wgetch) } /* }}} */ -/* {{{ proto int wattroff(resource window, int attrs) +/* {{{ proto int ncurses_wattroff(resource window, int attrs) Turns off attributes for a window */ PHP_FUNCTION(ncurses_wattroff) { @@ -2131,7 +2131,7 @@ PHP_FUNCTION(ncurses_wattroff) } /* }}} */ -/* {{{ proto int wattron(resource window, int attrs) +/* {{{ proto int ncurses_wattron(resource window, int attrs) Turns on attributes for a window */ PHP_FUNCTION(ncurses_wattron) { @@ -2149,7 +2149,7 @@ PHP_FUNCTION(ncurses_wattron) } /* }}} */ -/* {{{ proto int wattrset(resource window, int attrs) +/* {{{ proto int ncurses_wattrset(resource window, int attrs) Set the attributes for a window */ PHP_FUNCTION(ncurses_wattrset) { @@ -2167,7 +2167,7 @@ PHP_FUNCTION(ncurses_wattrset) } /* }}} */ -/* {{{ proto int wstandend(resource window) +/* {{{ proto int ncurses_wstandend(resource window) End standout mode for a window */ PHP_FUNCTION(ncurses_wstandend) { @@ -2184,7 +2184,7 @@ PHP_FUNCTION(ncurses_wstandend) } /* }}} */ -/* {{{ proto int wstandout(resource window) +/* {{{ proto int ncurses_wstandout(resource window) Enter standout mode for a window */ PHP_FUNCTION(ncurses_wstandout) { |