From 689252082c2660e2b6fddc674047922d8b2c7845 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Thu, 11 Oct 2001 23:33:59 +0000 Subject: * zend_module_entry change: apino, debug and zts are moved first, see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig) --- ext/dbplus/dbplus.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/dbplus/dbplus.c') diff --git a/ext/dbplus/dbplus.c b/ext/dbplus/dbplus.c index 8b7ee4e207..9f259ade08 100644 --- a/ext/dbplus/dbplus.c +++ b/ext/dbplus/dbplus.c @@ -118,6 +118,7 @@ function_entry dbplus_functions[] = { /* {{{ module entry */ zend_module_entry dbplus_module_entry = { + STANDARD_MODULE_HEADER, "dbplus", dbplus_functions, PHP_MINIT(dbplus), @@ -125,6 +126,7 @@ zend_module_entry dbplus_module_entry = { PHP_RINIT(dbplus), /* Replace with NULL if there's nothing to do at request start */ PHP_RSHUTDOWN(dbplus), /* Replace with NULL if there's nothing to do at request end */ PHP_MINFO(dbplus), + NO_VERSION_YET, STANDARD_MODULE_PROPERTIES }; -- cgit v1.2.1