summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-12-06 02:28:26 +0000
committerfoobar <sniper@php.net>2005-12-06 02:28:26 +0000
commita208d9a966905ab2f551acfc93f119b51efc94c7 (patch)
treed5781cdb101153c87b89e22ec876c291e3b970b2 /ext/sqlite/sqlite.c
parenta05e8e335d077b8da349d40e8e9523eec554a89e (diff)
downloadphp-git-a208d9a966905ab2f551acfc93f119b51efc94c7.tar.gz
- Nuke php3 legacy
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r--ext/sqlite/sqlite.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c
index 6c3f1c4dcd..9fbdf75835 100644
--- a/ext/sqlite/sqlite.c
+++ b/ext/sqlite/sqlite.c
@@ -163,7 +163,7 @@ static int php_sqlite_fetch(struct php_sqlite_result *rres TSRMLS_DC);
enum { PHPSQLITE_ASSOC = 1, PHPSQLITE_NUM = 2, PHPSQLITE_BOTH = PHPSQLITE_ASSOC|PHPSQLITE_NUM };
-function_entry sqlite_functions[] = {
+zend_function_entry sqlite_functions[] = {
PHP_FE(sqlite_open, third_arg_force_ref)
PHP_FE(sqlite_popen, third_arg_force_ref)
PHP_FE(sqlite_close, NULL)
@@ -206,7 +206,7 @@ function_entry sqlite_functions[] = {
{NULL, NULL, NULL}
};
-function_entry sqlite_funcs_db[] = {
+zend_function_entry sqlite_funcs_db[] = {
PHP_ME_MAPPING(__construct, sqlite_open, third_arg_force_ref)
/* PHP_ME_MAPPING(close, sqlite_close, NULL)*/
PHP_ME_MAPPING(query, sqlite_query, third_arg_force_ref)
@@ -226,7 +226,7 @@ function_entry sqlite_funcs_db[] = {
{NULL, NULL, NULL}
};
-function_entry sqlite_funcs_query[] = {
+zend_function_entry sqlite_funcs_query[] = {
PHP_ME_MAPPING(fetch, sqlite_fetch_array, NULL)
PHP_ME_MAPPING(fetchObject, sqlite_fetch_object, NULL)
PHP_ME_MAPPING(fetchSingle, sqlite_fetch_single, NULL)
@@ -250,7 +250,7 @@ function_entry sqlite_funcs_query[] = {
{NULL, NULL, NULL}
};
-function_entry sqlite_funcs_ub_query[] = {
+zend_function_entry sqlite_funcs_ub_query[] = {
PHP_ME_MAPPING(fetch, sqlite_fetch_array, NULL)
PHP_ME_MAPPING(fetchObject, sqlite_fetch_object, NULL)
PHP_ME_MAPPING(fetchSingle, sqlite_fetch_single, NULL)
@@ -265,7 +265,7 @@ function_entry sqlite_funcs_ub_query[] = {
{NULL, NULL, NULL}
};
-function_entry sqlite_funcs_exception[] = {
+zend_function_entry sqlite_funcs_exception[] = {
{NULL, NULL, NULL}
};