free(info);
}
/* }}} */
- /* {{{ php3_minit_dba */
static PHP_MINIT_FUNCTION(dba)
{
GLOBAL(le_pdb) = register_list_destructors(NULL, dba_close);
return SUCCESS;
}
-/* }}} */
- /* {{{ php3_mshutdown_dba */
static PHP_MSHUTDOWN_FUNCTION(dba)
{
zend_hash_destroy(&ht_keys);
return SUCCESS;
}
-/* }}} */
- /* {{{ php3_info_dba */
static PHP_MINFO_FUNCTION(dba)
{
PUTS(hptr->name);
}
}
-/* }}} */
- /* {{{ _php3_dba_update */
-static void _php3_dba_update(INTERNAL_FUNCTION_PARAMETERS, int mode)
+static void php_dba_update(INTERNAL_FUNCTION_PARAMETERS, int mode)
{
DBA_ID_PARS;
pval **val, **key;
RETURN_TRUE;
RETURN_FALSE;
}
-/* }}} */
- /* {{{ _php3_dba_open */
#define FREENOW if(args) efree(args); if(key) efree(key)
-static void _php3_dba_open(INTERNAL_FUNCTION_PARAMETERS, int persistent)
+static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, int persistent)
{
pval ***args = (pval ***) NULL;
int ac = ARG_COUNT(ht);
opens path using the specified handler in mode persistently */
PHP_FUNCTION(dba_popen)
{
- _php3_dba_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
+ php_dba_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
}
/* }}} */
opens path using the specified handler in mode*/
PHP_FUNCTION(dba_open)
{
- _php3_dba_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
+ php_dba_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
}
/* }}} */
inserts value as key, returns false, if key exists already */
PHP_FUNCTION(dba_insert)
{
- _php3_dba_update(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
+ php_dba_update(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
}
/* }}} */
inserts value as key, replaces key, if key exists already */
PHP_FUNCTION(dba_replace)
{
- _php3_dba_update(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
+ php_dba_update(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
}
/* }}} */
/* {{{ proto bool dbase_replace_record(int identifier, array data, int recnum)
Replaces a record to the database */
-void php3_dbase_replace_record(INTERNAL_FUNCTION_PARAMETERS) {
+PHP_FUNCTION(dbase_replace_record)
+{
pval *dbh_id, *fields, *field, *recnum;
dbhead_t *dbh;
int dbh_type;
{NULL, NULL, NULL}
};
-zend_module_entry php3_domxml_module_entry = {
+zend_module_entry php_domxml_module_entry = {
"DOM", php_domxml_functions, PHP_MINIT(domxml), NULL, NULL, NULL, PHP_MINFO(domxml), STANDARD_MODULE_PROPERTIES
};
#if HAVE_DOMXML
#include <gnome-xml/parser.h>
-extern zend_module_entry php3_domxml_module_entry;
-#define php3_domxml_module_ptr &php3_domxml_module_entry
+extern zend_module_entry php_domxml_module_entry;
+#define php_domxml_module_ptr &php_domxml_module_entry
/* directory functions */
extern PHP_MINIT_FUNCTION(domxml);
PHP_FUNCTION(domxml_attrname);
#else
-#define php3_domxml_module_ptr NULL
+#define php_domxml_module_ptr NULL
#endif /* HAVE_DOMXML */
-#define phpext_domxml_ptr php3_domxml_module_ptr
+#define phpext_domxml_ptr php_domxml_module_ptr
#endif /* _PHP3_DIR_H */
#if HAVE_FTP
-#ifndef ZEND_VERSION
-#include "internal_functions.h"
-#include "php3_list.h"
-#define php_error php_error
-#endif
-
#include "ext/standard/file.h"
#include "php_ftp.h"
static int le_ftpbuf;
-function_entry php3_ftp_functions[] = {
+function_entry php_ftp_functions[] = {
PHP_FE(ftp_connect, NULL)
PHP_FE(ftp_login, NULL)
PHP_FE(ftp_pwd, NULL)
{NULL, NULL, NULL}
};
-zend_module_entry php3_ftp_module_entry = {
+zend_module_entry php_ftp_module_entry = {
"FTP Functions",
- php3_ftp_functions,
-#ifdef ZEND_VERSION
+ php_ftp_functions,
PHP_MINIT(ftp),
-#else
- php3_minit_ftp,
-#endif
NULL,
NULL,
NULL,
ftp_close(ftp);
}
-#ifndef ZEND_VERSION
-int php3_minit_ftp(INIT_FUNC_ARGS)
-#else
PHP_MINIT_FUNCTION(ftp)
-#endif
{
ELS_FETCH();
#if HAVE_FTP
-extern zend_module_entry php3_ftp_module_entry;
-#define php3_ftp_module_ptr &php3_ftp_module_entry
+extern zend_module_entry php_ftp_module_entry;
+#define php_ftp_module_ptr &php_ftp_module_entry
-#ifdef ZEND_VERSION
PHP_MINIT_FUNCTION(ftp);
-#else
-int php3_minit_ftp(INIT_FUNC_ARGS);
-#endif
PHP_FUNCTION(ftp_connect);
PHP_FUNCTION(ftp_login);
PHP_FUNCTION(ftp_delete);
PHP_FUNCTION(ftp_quit);
-#define phpext_ftp_ptr php3_ftp_module_ptr
+#define phpext_ftp_ptr php_ftp_module_ptr
#else
-#define php3_ftp_module_ptr NULL
+#define php_ftp_module_ptr NULL
#endif /* HAVE_FTP */
#endif