summaryrefslogtreecommitdiff
path: root/ext/dbx
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2001-10-11 23:33:59 +0000
committerStig Bakken <ssb@php.net>2001-10-11 23:33:59 +0000
commit689252082c2660e2b6fddc674047922d8b2c7845 (patch)
treea6d3a9bff0ae6f205098017ecb84ebb1b1f74460 /ext/dbx
parent405142087ca9f49f6f480e29541bb3fe05847fe8 (diff)
downloadphp-git-689252082c2660e2b6fddc674047922d8b2c7845.tar.gz
* zend_module_entry change: apino, debug and zts are moved first,
see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
Diffstat (limited to 'ext/dbx')
-rw-r--r--ext/dbx/dbx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dbx/dbx.c b/ext/dbx/dbx.c
index 91ebdd6c5f..a98d508b11 100644
--- a/ext/dbx/dbx.c
+++ b/ext/dbx/dbx.c
@@ -148,6 +148,7 @@ function_entry dbx_functions[] = {
};
zend_module_entry dbx_module_entry = {
+ STANDARD_MODULE_HEADER,
"dbx",
dbx_functions,
ZEND_MINIT(dbx),
@@ -155,6 +156,7 @@ zend_module_entry dbx_module_entry = {
NULL, /*ZEND_RINIT(dbx), /* Replace with NULL if there's nothing to do at request start */
NULL, /*ZEND_RSHUTDOWN(dbx), /* Replace with NULL if there's nothing to do at request end */
ZEND_MINFO(dbx),
+ NO_VERSION_YET,
STANDARD_MODULE_PROPERTIES
};