Replace the various get_module() functions with a uniform

ZEND_GET_MODULE(name) macro.
This commit is contained in:
Sascha Schumann 2000-05-02 00:30:36 +00:00
parent 95310ad5e0
commit 0d383d9373
38 changed files with 39 additions and 39 deletions

View File

@ -49,7 +49,7 @@ zend_module_entry aspell_module_entry = {
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &aspell_module_entry; }
ZEND_GET_MODULE(aspell)
#endif
static void php_aspell_close(aspell *sc)

View File

@ -41,7 +41,7 @@ zend_module_entry bcmath_module_entry = {
};
#if COMPILE_DL
zend_module_entry *get_module() { return &bcmath_module_entry; };
ZEND_GET_MODULE(bcmath)
#endif
#ifndef THREAD_SAFE

View File

@ -160,7 +160,7 @@ zend_module_entry cpdf_module_entry = {
#if COMPILE_DL
#include "dl/phpdl.h"
DLEXPORT zend_module_entry *get_module(void) { return &cpdf_module_entry; }
ZEND_GET_MODULE(cpdf)
#endif
static void _free_outline(CPDFoutlineEntry *outline)

View File

@ -69,7 +69,7 @@ phpdav_module php_dav_module;
/* {{{ dynamically loadable module stuff */
# if COMPILE_DL
DLEXPORT zend_module_entry *get_module() { return &phpdav_module_entry; };
ZEND_GET_MODULE(phpdav)
# endif /* COMPILE_DL */
/* }}} */

View File

@ -1141,7 +1141,7 @@ zend_module_entry dbm_module_entry = {
};
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &dbm_module_entry; }
ZEND_GET_MODULE(dbm)
#endif
#endif

View File

@ -731,7 +731,7 @@ zend_module_entry dbase_module_entry = {
#if defined(COMPILE_DL)
DLEXPORT zend_module_entry *get_module(void) { return &dbase_module_entry; }
ZEND_GET_MODULE(dbase)
#if (WIN32|WINNT) && defined(THREAD_SAFE)

View File

@ -105,7 +105,7 @@ zend_module_entry fdf_module_entry = {
#if COMPILE_DL
#include "dl/phpdl.h"
DLEXPORT zend_module_entry *get_module(void) { return &fdf_module_entry; }
ZEND_GET_MODULE(fdf)
#endif
static void phpi_FDFClose(FDFDoc fdf) {

View File

@ -138,7 +138,7 @@ zend_module_entry filepro_module_entry = {
#if COMPILE_DL
#include "dl/phpdl.h"
DLEXPORT zend_module_entry *get_module(void) { return &filepro_module_entry; }
ZEND_GET_MODULE(filepro)
#if (WIN32|WINNT) && defined(THREAD_SAFE)
/*NOTE: You should have an odbc.def file where you

View File

@ -172,7 +172,7 @@ static php_gd_globals gd_globals;
#ifdef COMPILE_DL_GD
# include "dl/phpdl.h"
DLEXPORT zend_module_entry *get_module(void) { return &gd_module_entry; }
ZEND_GET_MODULE(gd)
#endif

View File

@ -126,13 +126,13 @@ PHP_HW_API php_hw_globals hw_globals;
#endif
#ifdef COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &hw_module_entry; }
ZEND_GET_MODULE(hw)
#endif
void print_msg(hg_msg *msg, char *str, int txt);
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &hw_module_entry; }
ZEND_GET_MODULE(hw)
#endif
void _close_hw_link(hw_connection *conn)

View File

@ -101,7 +101,7 @@ zend_module_entry php_icap_module_entry = {
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &php_icap_module_entry; }
ZEND_GET_MODULE(php_icap)
#endif
/*

View File

@ -158,7 +158,7 @@ zend_module_entry imap_module_entry = {
#ifdef COMPILE_DL_IMAP
ZEND_DLEXPORT zend_module_entry *get_module(void) { return &imap_module_entry; }
ZEND_GET_MODULE(imap)
#endif

View File

@ -102,7 +102,7 @@ zend_module_entry ibase_module_entry =
#if COMPILE_DL
#include "dl/phpdl.h"
DLEXPORT php_module_entry *get_module() { return &ibase_module_entry; }
ZEND_GET_MODULE(ibase)
#define DL_MALLOC(size) malloc(size)
#define DL_STRDUP(str) strdup(str)

View File

@ -493,7 +493,7 @@ zend_module_entry java_module_entry = {
STANDARD_MODULE_PROPERTIES
};
DLEXPORT zend_module_entry *get_module(void) { return &java_module_entry; }
ZEND_GET_MODULE(java)
/***************************************************************************/

View File

@ -101,7 +101,7 @@ zend_module_entry ldap_module_entry = {
#ifdef COMPILE_DL_LDAP
ZEND_DLEXPORT zend_module_entry *get_module(void ) { return &ldap_module_entry; }
ZEND_GET_MODULE(ldap)
#endif

View File

@ -127,7 +127,7 @@ zend_module_entry php_mcal_module_entry = {
};
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &php_mcal_module_entry; }
ZEND_GET_MODULE(php_mcal)
#endif
/*

View File

@ -108,7 +108,7 @@ zend_module_entry msql_module_entry = {
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &msql_module_entry; }
ZEND_GET_MODULE(msql)
#endif
typedef struct {

View File

@ -81,7 +81,7 @@ PHP_MSSQL_API php_mssql_globals mssql_globals;
#endif
#ifdef COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &mssql_module_entry; };
ZEND_GET_MODULE(mssql)
#endif
#define CHECK_LINK(link) { if (link==-1) { php_error(E_WARNING,"MS SQL: A link to the server could not be established"); RETURN_FALSE; } }

View File

@ -152,7 +152,7 @@ zend_module_entry mysql_module_entry = {
ZEND_DECLARE_MODULE_GLOBALS(mysql)
#ifdef COMPILE_DL_MYSQL
ZEND_DLEXPORT zend_module_entry *get_module(void) { return &mysql_module_entry; }
ZEND_GET_MODULE(mysql)
#endif
void timeout(int sig);

View File

@ -94,7 +94,7 @@ PHP_OCI_API php_oci_globals oci_globals;
/* {{{ dynamically loadable module stuff */
#ifdef COMPILE_DL_OCI8
DLEXPORT zend_module_entry *get_module() { return &oci8_module_entry; };
ZEND_GET_MODULE(oci8)
#endif /* COMPILE_DL */
/* }}} */

View File

@ -132,7 +132,7 @@ ZEND_API php_odbc_globals odbc_globals;
#endif
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &odbc_module_entry; };
ZEND_GET_MODULE(odbc)
#endif
static void _free_odbc_result(odbc_result *res)

View File

@ -67,7 +67,7 @@ zend_module_entry velocis_module_entry = {
#if COMPILE_DL
zend_module_entry *get_module() { return &velocis_module_entry; }
ZEND_GET_MODULE(velocis)
#endif
THREAD_LS velocis_module php_velocis_module;

View File

@ -182,7 +182,7 @@ static const text *ora_func_tab[] =
};
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module() { return &oracle_module_entry; };
ZEND_GET_MODULE(oracle)
#endif
static int _close_oraconn(oraConnection *conn)

View File

@ -1211,7 +1211,7 @@ zend_module_entry pcre_module_entry = {
};
#ifdef COMPILE_DL_PCRE
ZEND_DLEXPORT zend_module_entry *get_module(void) { return &pcre_module_entry; }
ZEND_GET_MODULE(pcre)
#endif
/* }}} */

View File

@ -170,7 +170,7 @@ zend_module_entry pdf_module_entry = {
#if COMPILE_DL
#include "dl/phpdl.h"
DLEXPORT zend_module_entry *get_module(void) { return &pdf_module_entry; }
ZEND_GET_MODULE(pdf)
#endif
static void _free_pdf_image(int image)

View File

@ -80,7 +80,7 @@ zend_module_entry pgsql_module_entry = {
};
#if COMPILE_DL
PHP_PGSQL_API zend_module_entry *get_module() { return &pgsql_module_entry; }
ZEND_GET_MODULE(pgsql)
#endif
static int le_link,le_plink,le_result,le_lofp,le_string;

View File

@ -130,7 +130,7 @@ zend_module_entry posix_module_entry = {
};
#ifdef COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &posix_module_entry; }
ZEND_GET_MODULE(posix)
#endif
static PHP_MINFO_FUNCTION(posix)

View File

@ -493,7 +493,7 @@ zend_module_entry java_module_entry = {
STANDARD_MODULE_PROPERTIES
};
DLEXPORT zend_module_entry *get_module(void) { return &java_module_entry; }
ZEND_GET_MODULE(java)
/***************************************************************************/

View File

@ -121,7 +121,7 @@ zend_module_entry session_module_entry = {
};
#ifdef COMPILE_DL_SESSION
ZEND_DLEXPORT zend_module_entry *get_module(void) { return &session_module_entry; }
ZEND_GET_MODULE(session)
#endif
typedef struct {

View File

@ -93,7 +93,7 @@ zend_module_entry snmp_module_entry = {
};
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module() { return &snmp_module_entry; };
ZEND_GET_MODULE(snmp)
#endif
/* THREAD_LS snmp_module php_snmp_module; - may need one of these at some point */

View File

@ -35,7 +35,7 @@
#endif
#if COMPILE_DL
DLEXPORT zend_module_entry *get_module(void) { return &odbc_module_entry; }
ZEND_GET_MODULE(odbc)
#endif
/* {{{ proto int mail(string to, string subject, string message [, string additional_headers])

View File

@ -107,7 +107,7 @@ zend_module_entry swf_module_entry = {
};
#ifdef COMPILE_DL_SWF
ZEND_DLEXPORT zend_module_entry *get_module(void) { return &swf_module_entry; }
ZEND_GET_MODULE(swf)
#endif
PHP_MINFO_FUNCTION(swf)

View File

@ -84,7 +84,7 @@ zend_module_entry sybase_module_entry = {
};
#if COMPILE_DL
zend_module_entry *get_module() { return &sybase_module_entry; }
ZEND_GET_MODULE(sybase)
#endif
THREAD_LS sybase_module php_sybase_module;

View File

@ -74,7 +74,7 @@ zend_module_entry sybase_module_entry = {
};
#if COMPILE_DL
zend_module_entry *get_module() { return &sybase_module_entry; }
ZEND_GET_MODULE(sybase)
#endif
php_sybase_globals sybase_globals;

View File

@ -61,7 +61,7 @@ zend_module_entry sysvsem_module_entry = {
};
#if COMPILE_DL
zend_module_entry *get_module() { return &sysvsem_module_entry; }
ZEND_GET_MODULE(sysvsem)
#endif

View File

@ -51,7 +51,7 @@ zend_module_entry sysvshm_module_entry = {
#if COMPILE_DL
zend_module_entry *get_module() { return &sysvshm_module_entry; }
ZEND_GET_MODULE(sysvshm)
#endif
#undef shm_ptr /* undefine AIX-specific macro */

View File

@ -58,7 +58,7 @@ PHP_XML_API php_xml_globals xml_globals;
#ifdef COMPILE_DL_XML
# include "dl/phpdl.h"
DLEXPORT zend_module_entry *get_module(void) { return &xml_module_entry; }
ZEND_GET_MODULE(xml)
#endif /* COMPILE_DL_XML */
/* }}} */

View File

@ -110,7 +110,7 @@ zend_module_entry php_zlib_module_entry = {
};
#if defined(COMPILE_DL)
DLEXPORT zend_module_entry *get_module(void) { return &php_zlib_module_entry; }
ZEND_GET_MODULE(php_zlib)
#endif
static void phpi_destructor_gzclose(gzFile *zp) {