summaryrefslogtreecommitdiff
path: root/ext/mysql/php3_mysql.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysql/php3_mysql.h')
-rw-r--r--ext/mysql/php3_mysql.h64
1 files changed, 32 insertions, 32 deletions
diff --git a/ext/mysql/php3_mysql.h b/ext/mysql/php3_mysql.h
index 0988631d1e..2b5e55e985 100644
--- a/ext/mysql/php3_mysql.h
+++ b/ext/mysql/php3_mysql.h
@@ -49,38 +49,38 @@ extern php3_module_entry mysql_module_entry;
extern int php3_minit_mysql(INIT_FUNC_ARGS);
extern int php3_rinit_mysql(INIT_FUNC_ARGS);
extern int php3_mshutdown_mysql(SHUTDOWN_FUNC_ARGS);
-extern void php3_info_mysql(ZEND_MODULE_INFO_FUNC_ARGS);
-extern void php3_mysql_connect(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_pconnect(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_close(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_select_db(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_create_db(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_drop_db(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_query(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_db_query(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_list_dbs(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_list_tables(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_list_fields(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_error(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_errno(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_affected_rows(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_insert_id(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_result(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_num_rows(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_num_fields(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_fetch_row(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_fetch_array(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_fetch_object(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_data_seek(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_fetch_lengths(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_fetch_field(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_field_seek(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_free_result(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_field_name(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_field_table(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_field_len(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_field_type(INTERNAL_FUNCTION_PARAMETERS);
-extern void php3_mysql_field_flags(INTERNAL_FUNCTION_PARAMETERS);
+void php3_info_mysql(ZEND_MODULE_INFO_FUNC_ARGS);
+PHP_FUNCTION(mysql_connect);
+PHP_FUNCTION(mysql_pconnect);
+PHP_FUNCTION(mysql_close);
+PHP_FUNCTION(mysql_select_db);
+PHP_FUNCTION(mysql_create_db);
+PHP_FUNCTION(mysql_drop_db);
+PHP_FUNCTION(mysql_query);
+PHP_FUNCTION(mysql_db_query);
+PHP_FUNCTION(mysql_list_dbs);
+PHP_FUNCTION(mysql_list_tables);
+PHP_FUNCTION(mysql_list_fields);
+PHP_FUNCTION(mysql_error);
+PHP_FUNCTION(mysql_errno);
+PHP_FUNCTION(mysql_affected_rows);
+PHP_FUNCTION(mysql_insert_id);
+PHP_FUNCTION(mysql_result);
+PHP_FUNCTION(mysql_num_rows);
+PHP_FUNCTION(mysql_num_fields);
+PHP_FUNCTION(mysql_fetch_row);
+PHP_FUNCTION(mysql_fetch_array);
+PHP_FUNCTION(mysql_fetch_object);
+PHP_FUNCTION(mysql_data_seek);
+PHP_FUNCTION(mysql_fetch_lengths);
+PHP_FUNCTION(mysql_fetch_field);
+PHP_FUNCTION(mysql_field_seek);
+PHP_FUNCTION(mysql_free_result);
+PHP_FUNCTION(mysql_field_name);
+PHP_FUNCTION(mysql_field_table);
+PHP_FUNCTION(mysql_field_len);
+PHP_FUNCTION(mysql_field_type);
+PHP_FUNCTION(mysql_field_flags);
typedef struct {
long default_link;