summaryrefslogtreecommitdiff
path: root/main/php_ini.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-06-04 10:45:54 +0000
committerZeev Suraski <zeev@php.net>1999-06-04 10:45:54 +0000
commit3cad348509b66828f421d1b843a025b555519a83 (patch)
treec088457cf498c7b157b4691f670080b8d9d68e95 /main/php_ini.c
parenta3a60dd4e704189fbdea808805797d5b11b275e7 (diff)
downloadphp-git-3cad348509b66828f421d1b843a025b555519a83.tar.gz
* Add a new workspace for dynamic PHP extensions.
* Add a few functions to PHP's API. * Get the MySQL extension up-to-date and thread safe. * Add a project for building the MySQL extension under Win32.
Diffstat (limited to 'main/php_ini.c')
-rw-r--r--main/php_ini.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/php_ini.c b/main/php_ini.c
index e5b219eea6..610e85ce12 100644
--- a/main/php_ini.c
+++ b/main/php_ini.c
@@ -351,7 +351,7 @@ PHPAPI void display_ini_entries(zend_module_entry *module)
/* Standard message handlers */
-PHP_INI_MH(OnUpdateInt)
+PHPAPI PHP_INI_MH(OnUpdateInt)
{
long *p;
#ifndef ZTS
@@ -369,7 +369,7 @@ PHP_INI_MH(OnUpdateInt)
}
-PHP_INI_MH(OnUpdateReal)
+PHPAPI PHP_INI_MH(OnUpdateReal)
{
double *p;
#ifndef ZTS
@@ -387,7 +387,7 @@ PHP_INI_MH(OnUpdateReal)
}
-PHP_INI_MH(OnUpdateString)
+PHPAPI PHP_INI_MH(OnUpdateString)
{
char **p;
#ifndef ZTS
@@ -405,7 +405,7 @@ PHP_INI_MH(OnUpdateString)
}
-PHP_INI_MH(OnUpdateStringUnempty)
+PHPAPI PHP_INI_MH(OnUpdateStringUnempty)
{
char **p;
#ifndef ZTS