summaryrefslogtreecommitdiff
path: root/ext/standard/dl.h
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>1999-07-26 20:09:08 +0000
committerAndrey Hristov <andrey@php.net>1999-07-26 20:09:08 +0000
commit1b2c932cc2848da25b38a4e73aa74541a9761beb (patch)
tree19c46f9a829a34237c2411cdce3a3c4ca2f4fde1 /ext/standard/dl.h
parent7af5579e3f40ccda2e5b5bf47ff3b2a71327317f (diff)
downloadphp-git-1b2c932cc2848da25b38a4e73aa74541a9761beb.tar.gz
More symbol work.
I've defined a few macros to help with module/request init/startup function definitions. Basically: PHP_MINIT_FUNCTION(module) PHP_MSHUTDOWN_FUNCTION(module) PHP_RINIT_FUNCTION(module) PHP_RSHUTDOWN_FUNCTION(module) PHP_MINFO_FUNCTION(module) These will expand to proper function prototypes. Now to specify these in the module entry, use: PHP_MINIT(module) PHP_MSHUTDOWN(module) PHP_RINIT(module) PHP_RSHUTDOWN(module) PHP_MINFO(module) I've updated all modules in ext/standard and everything from ext/apache to ext/db. If you can, please update your module to use these macros.
Diffstat (limited to 'ext/standard/dl.h')
-rw-r--r--ext/standard/dl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/dl.h b/ext/standard/dl.h
index 45e2c46098..9489723e4b 100644
--- a/ext/standard/dl.h
+++ b/ext/standard/dl.h
@@ -45,10 +45,10 @@ extern php3_module_entry dl_module_entry;
/* dynamic loading functions */
void dl(INTERNAL_FUNCTION_PARAMETERS);
-extern int php3_minit_dl(INIT_FUNC_ARGS);
-extern int php3_mshutdown_dl(SHUTDOWN_FUNC_ARGS);
-extern int php3_rshutdown_dl(SHUTDOWN_FUNC_ARGS);
-void php3_info_dl(ZEND_MODULE_INFO_FUNC_ARGS);
+extern PHP_MINIT_FUNCTION(dl);
+extern PHP_MSHUTDOWN_FUNCTION(dl);
+extern PHP_RSHUTDOWN_FUNCTION(dl);
+PHP_MINFO_FUNCTION(dl);
#else