diff options
Diffstat (limited to 'ext/pgsql/php3_pgsql.h')
-rw-r--r-- | ext/pgsql/php3_pgsql.h | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/ext/pgsql/php3_pgsql.h b/ext/pgsql/php3_pgsql.h index 765c124d10..336d5ec2f5 100644 --- a/ext/pgsql/php3_pgsql.h +++ b/ext/pgsql/php3_pgsql.h @@ -48,38 +48,38 @@ extern php3_module_entry pgsql_module_entry; extern int php3_minit_pgsql(INIT_FUNC_ARGS); extern int php3_rinit_pgsql(INIT_FUNC_ARGS); -extern void php3_pgsql_connect(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_pconnect(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_close(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_dbname(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_error_message(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_options(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_port(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_tty(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_host(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_exec(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_num_rows(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_num_fields(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_cmdtuples(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_field_name(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_field_size(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_field_type(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_field_number(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_result(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_fetch_row(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_fetch_array(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_fetch_object(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_data_length(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_data_isnull(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_free_result(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_last_oid(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_lo_create(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_lo_unlink(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_lo_open(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_lo_close(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_lo_read(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_lo_write(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_pgsql_lo_readall(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(pgsql_connect); +PHP_FUNCTION(pgsql_pconnect); +PHP_FUNCTION(pgsql_close); +PHP_FUNCTION(pgsql_dbname); +PHP_FUNCTION(pgsql_error_message); +PHP_FUNCTION(pgsql_options); +PHP_FUNCTION(pgsql_port); +PHP_FUNCTION(pgsql_tty); +PHP_FUNCTION(pgsql_host); +PHP_FUNCTION(pgsql_exec); +PHP_FUNCTION(pgsql_num_rows); +PHP_FUNCTION(pgsql_num_fields); +PHP_FUNCTION(pgsql_cmdtuples); +PHP_FUNCTION(pgsql_field_name); +PHP_FUNCTION(pgsql_field_size); +PHP_FUNCTION(pgsql_field_type); +PHP_FUNCTION(pgsql_field_number); +PHP_FUNCTION(pgsql_result); +PHP_FUNCTION(pgsql_fetch_row); +PHP_FUNCTION(pgsql_fetch_array); +PHP_FUNCTION(pgsql_fetch_object); +PHP_FUNCTION(pgsql_data_length); +PHP_FUNCTION(pgsql_data_isnull); +PHP_FUNCTION(pgsql_free_result); +PHP_FUNCTION(pgsql_last_oid); +PHP_FUNCTION(pgsql_lo_create); +PHP_FUNCTION(pgsql_lo_unlink); +PHP_FUNCTION(pgsql_lo_open); +PHP_FUNCTION(pgsql_lo_close); +PHP_FUNCTION(pgsql_lo_read); +PHP_FUNCTION(pgsql_lo_write); +PHP_FUNCTION(pgsql_lo_readall); void php3_pgsql_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent); int php3_pgsql_get_default_link(INTERNAL_FUNCTION_PARAMETERS); @@ -87,7 +87,7 @@ void php3_pgsql_get_link_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); void php3_pgsql_get_result_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); char *get_field_name(PGconn *pgsql, Oid oid, HashTable *list); void php3_pgsql_get_field_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); -void php3_pgsql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(pgsql_fetch_hash); void php3_pgsql_data_info(INTERNAL_FUNCTION_PARAMETERS, int entry_type); |