diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-02-06 07:16:10 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-02-06 07:16:10 +0000 |
commit | b42f0b0d4377e2147ed7d127eb624de04e93c7d0 (patch) | |
tree | 900f2cbf15e69f091397e3bd8de6885fc208cc1c /ext/pgsql/php_pgsql.h | |
parent | 777a707c1723617f6b220b0ce4cd6330326546b1 (diff) | |
download | php-git-b42f0b0d4377e2147ed7d127eb624de04e93c7d0.tar.gz |
Make module specified functions to static.
Added TSRMLS_D/C, get rid of one TSRMLS_FETCH.
Diffstat (limited to 'ext/pgsql/php_pgsql.h')
-rw-r--r-- | ext/pgsql/php_pgsql.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/pgsql/php_pgsql.h b/ext/pgsql/php_pgsql.h index 71159b65ea..dde04e7ba3 100644 --- a/ext/pgsql/php_pgsql.h +++ b/ext/pgsql/php_pgsql.h @@ -123,14 +123,14 @@ PHP_FUNCTION(pg_escape_string); PHP_FUNCTION(pg_escape_bytea); #endif -void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent); -int php_pgsql_get_default_link(INTERNAL_FUNCTION_PARAMETERS); -void php_pgsql_get_link_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); -void php_pgsql_get_result_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); -char *get_field_name(PGconn *pgsql, Oid oid, HashTable *list); -void php_pgsql_get_field_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); -void php_pgsql_data_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); -void php_pgsql_do_async(INTERNAL_FUNCTION_PARAMETERS,int entry_type); +static void php_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent); +/* static int php_pgsql_get_default_link(INTERNAL_FUNCTION_PARAMETERS); */ +static void php_pgsql_get_link_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); +static void php_pgsql_get_result_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); +static char *get_field_name(PGconn *pgsql, Oid oid, HashTable *list TSRMLS_DC); +static void php_pgsql_get_field_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); +static void php_pgsql_data_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); +static void php_pgsql_do_async(INTERNAL_FUNCTION_PARAMETERS,int entry_type); typedef struct pgLofp { PGconn *conn; |