diff options
author | Andi Gutmans <andi@php.net> | 2000-08-26 14:21:26 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-08-26 14:21:26 +0000 |
commit | 0e6db7dc828c2d57957108fc53f3460ae989b6fd (patch) | |
tree | f9da0c874eefd648784e992ff423c38fa427e3ec /ext/ingres_ii/php_ii.h | |
parent | 483c99ad739c7ac7a1bb8b157f84f58fce9229f9 (diff) | |
download | php-git-0e6db7dc828c2d57957108fc53f3460ae989b6fd.tar.gz |
- Asked the author a long time already to change the function names to
- something which won't take up all of the ii_* names (not verbose enough).
- I'm doing it myself now so it really has to be checked as I can't compile.
- Changed both the function names and INI parameter names.
Diffstat (limited to 'ext/ingres_ii/php_ii.h')
-rw-r--r-- | ext/ingres_ii/php_ii.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/ext/ingres_ii/php_ii.h b/ext/ingres_ii/php_ii.h index b55672aa33..a5a1731f90 100644 --- a/ext/ingres_ii/php_ii.h +++ b/ext/ingres_ii/php_ii.h @@ -41,24 +41,24 @@ PHP_RINIT_FUNCTION(ii); PHP_RSHUTDOWN_FUNCTION(ii); PHP_MINFO_FUNCTION(ii); -PHP_FUNCTION(ii_connect); -PHP_FUNCTION(ii_pconnect); -PHP_FUNCTION(ii_close); -PHP_FUNCTION(ii_query); -PHP_FUNCTION(ii_num_rows); -PHP_FUNCTION(ii_num_fields); -PHP_FUNCTION(ii_field_name); -PHP_FUNCTION(ii_field_type); -PHP_FUNCTION(ii_field_nullable); -PHP_FUNCTION(ii_field_length); -PHP_FUNCTION(ii_field_precision); -PHP_FUNCTION(ii_field_scale); -PHP_FUNCTION(ii_fetch_array); -PHP_FUNCTION(ii_fetch_row); -PHP_FUNCTION(ii_fetch_object); -PHP_FUNCTION(ii_rollback); -PHP_FUNCTION(ii_commit); -PHP_FUNCTION(ii_autocommit); +PHP_FUNCTION(ingres_connect); +PHP_FUNCTION(ingres_pconnect); +PHP_FUNCTION(ingres_close); +PHP_FUNCTION(ingres_query); +PHP_FUNCTION(ingres_num_rows); +PHP_FUNCTION(ingres_num_fields); +PHP_FUNCTION(ingres_field_name); +PHP_FUNCTION(ingres_field_type); +PHP_FUNCTION(ingres_field_nullable); +PHP_FUNCTION(ingres_field_length); +PHP_FUNCTION(ingres_field_precision); +PHP_FUNCTION(ingres_field_scale); +PHP_FUNCTION(ingres_fetch_array); +PHP_FUNCTION(ingres_fetch_row); +PHP_FUNCTION(ingres_fetch_object); +PHP_FUNCTION(ingres_rollback); +PHP_FUNCTION(ingres_commit); +PHP_FUNCTION(ingres_autocommit); ZEND_BEGIN_MODULE_GLOBALS(ii) long allow_persistent; |