diff options
author | Egon Schmid <eschmid@php.net> | 2000-06-18 16:31:52 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-06-18 16:31:52 +0000 |
commit | 6e815b76eabaddd4a8e91e2577d6a8d83f7143b4 (patch) | |
tree | 5f130b129a5ee334206742849227dd3565ea7ac5 | |
parent | 153ef54498188123851b49d426cfd38db031b7c5 (diff) | |
download | php-git-6e815b76eabaddd4a8e91e2577d6a8d83f7143b4.tar.gz |
Some protos fixed.
-rw-r--r-- | ext/gd/gd.c | 2 | ||||
-rw-r--r-- | ext/hyperwave/hw.c | 2 | ||||
-rw-r--r-- | ext/imap/php_imap.c | 2 | ||||
-rw-r--r-- | ext/pgsql/pgsql.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 6c8965218d..467e75e72d 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -1689,7 +1689,7 @@ PHP_FUNCTION(imagecopy) } /* }}} */ -/* {{{ proto int imagecopyresized(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h); +/* {{{ proto int imagecopyresized(int dst_im, int src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h) Copy and resize part of an image */ PHP_FUNCTION(imagecopyresized) { diff --git a/ext/hyperwave/hw.c b/ext/hyperwave/hw.c index f1af66a918..ed51e52c04 100644 --- a/ext/hyperwave/hw.c +++ b/ext/hyperwave/hw.c @@ -904,7 +904,7 @@ PHP_FUNCTION(hw_connect) } /* }}} */ -/* {{{ proto int hw_pconnect(string host, int port [string username [, string password]]) +/* {{{ proto int hw_pconnect(string host, int port [, string username [, string password]]) Connect to the Hyperwave server persistent */ PHP_FUNCTION(hw_pconnect) { diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index c96a6d3535..55d1c947e2 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -1677,7 +1677,7 @@ PHP_FUNCTION(imap_headerinfo) /* }}} */ -/* {{{ proto object imap_rfc822_parse_headers(string headers, string [default_host]) +/* {{{ proto object imap_rfc822_parse_headers(string headers [, string default_host]) Parse a set of mail headers contained in a string, and return an object similar to imap_headerinfo() */ PHP_FUNCTION(imap_rfc822_parse_headers) { diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index ea33706073..467a255bba 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1555,8 +1555,8 @@ PHP_FUNCTION(pg_loimport) } /* }}} */ -/* {{{ proto bool pg_loexport(int objoid, string filename[, resource connection]) - Emport large object direct to filesystem */ +/* {{{ proto int pg_loexport(int objoid, string filename [, resource connection]) + Export large object direct to filesystem */ PHP_FUNCTION(pg_loexport) { zval **pgsql_link, **oid_id, **file_out; |