1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1998, 1999 Andi Gutmans, Zeev Suraski |
|
|
|
|
+----------------------------------------------------------------------+
|
1999-07-20 04:02:12 +08:00
|
|
|
| This source file is subject to version 0.91 of the Zend license, |
|
1999-07-16 22:58:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
1999-07-20 04:02:12 +08:00
|
|
|
| http://www.zend.com/license/0_91.txt. |
|
1999-07-16 22:58:16 +08:00
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
1999-07-16 22:58:16 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#ifndef _MODULES_H
|
|
|
|
#define _MODULES_H
|
|
|
|
|
1999-04-09 05:14:50 +08:00
|
|
|
#define INIT_FUNC_ARGS int type, int module_number
|
1999-06-16 19:03:57 +08:00
|
|
|
#define INIT_FUNC_ARGS_PASSTHRU type, module_number
|
1999-04-09 05:14:50 +08:00
|
|
|
#define SHUTDOWN_FUNC_ARGS int type, int module_number
|
1999-06-16 19:03:57 +08:00
|
|
|
#define SHUTDOWN_FUNC_ARGS_PASSTHRU type, module_number
|
1999-05-09 22:56:38 +08:00
|
|
|
#define ZEND_MODULE_INFO_FUNC_ARGS zend_module_entry *zend_module
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-09-04 01:43:10 +08:00
|
|
|
#define STANDARD_MODULE_PROPERTIES_EX 0, 0, 0, NULL, 0
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-09-04 01:43:10 +08:00
|
|
|
#define STANDARD_MODULE_PROPERTIES \
|
|
|
|
NULL, NULL, STANDARD_MODULE_PROPERTIES_EX
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#define MODULE_PERSISTENT 1
|
|
|
|
#define MODULE_TEMPORARY 2
|
|
|
|
|
1999-05-09 20:24:21 +08:00
|
|
|
typedef struct _zend_module_entry zend_module_entry;
|
|
|
|
|
|
|
|
struct _zend_module_entry {
|
1999-04-08 02:10:10 +08:00
|
|
|
char *name;
|
1999-04-18 23:11:52 +08:00
|
|
|
zend_function_entry *functions;
|
1999-04-08 02:10:10 +08:00
|
|
|
int (*module_startup_func)(INIT_FUNC_ARGS);
|
1999-04-09 05:14:50 +08:00
|
|
|
int (*module_shutdown_func)(SHUTDOWN_FUNC_ARGS);
|
1999-04-08 02:10:10 +08:00
|
|
|
int (*request_startup_func)(INIT_FUNC_ARGS);
|
1999-04-09 05:14:50 +08:00
|
|
|
int (*request_shutdown_func)(SHUTDOWN_FUNC_ARGS);
|
1999-05-09 20:24:21 +08:00
|
|
|
void (*info_func)(ZEND_MODULE_INFO_FUNC_ARGS);
|
1999-09-04 01:43:10 +08:00
|
|
|
int (*global_startup_func)(void);
|
|
|
|
int (*global_shutdown_func)(void);
|
1999-05-09 20:24:21 +08:00
|
|
|
int request_started, module_started;
|
1999-04-08 02:10:10 +08:00
|
|
|
unsigned char type;
|
|
|
|
void *handle;
|
|
|
|
int module_number;
|
1999-05-09 20:24:21 +08:00
|
|
|
};
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
extern HashTable module_registry;
|
|
|
|
|
1999-09-04 03:12:07 +08:00
|
|
|
void module_destructor(zend_module_entry *module);
|
|
|
|
int module_registry_cleanup(zend_module_entry *module);
|
|
|
|
int module_registry_request_startup(zend_module_entry *module);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-07-10 01:24:47 +08:00
|
|
|
#define ZEND_MODULE_DTOR (int (*)(void *)) module_destructor
|
1999-04-08 02:10:10 +08:00
|
|
|
#endif
|