php-src/Zend/zend_modules.h

61 lines
2.4 KiB
C
Raw Normal View History

1999-04-07 18:10:10 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) 1998, 1999 Andi Gutmans, Zeev Suraski |
+----------------------------------------------------------------------+
1999-07-19 20:02:12 +00:00
| This source file is subject to version 0.91 of the Zend license, |
1999-07-16 14:58:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
1999-07-19 20:02:12 +00:00
| http://www.zend.com/license/0_91.txt. |
1999-07-16 14:58:16 +00: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-07 18:10:10 +00:00
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
1999-07-16 14:58:16 +00:00
1999-04-07 18:10:10 +00:00
#ifndef _MODULES_H
#define _MODULES_H
#define INIT_FUNC_ARGS int type, int module_number
#define INIT_FUNC_ARGS_PASSTHRU type, module_number
#define SHUTDOWN_FUNC_ARGS int type, int module_number
#define SHUTDOWN_FUNC_ARGS_PASSTHRU type, module_number
1999-05-09 14:56:38 +00:00
#define ZEND_MODULE_INFO_FUNC_ARGS zend_module_entry *zend_module
1999-04-07 18:10:10 +00:00
#define STANDARD_MODULE_PROPERTIES 0, 0, 0, NULL, 0
#define MODULE_PERSISTENT 1
#define MODULE_TEMPORARY 2
1999-05-09 12:24:21 +00:00
typedef struct _zend_module_entry zend_module_entry;
struct _zend_module_entry {
1999-04-07 18:10:10 +00:00
char *name;
zend_function_entry *functions;
1999-04-07 18:10:10 +00:00
int (*module_startup_func)(INIT_FUNC_ARGS);
int (*module_shutdown_func)(SHUTDOWN_FUNC_ARGS);
1999-04-07 18:10:10 +00:00
int (*request_startup_func)(INIT_FUNC_ARGS);
int (*request_shutdown_func)(SHUTDOWN_FUNC_ARGS);
1999-05-09 12:24:21 +00:00
void (*info_func)(ZEND_MODULE_INFO_FUNC_ARGS);
int request_started, module_started;
1999-04-07 18:10:10 +00:00
unsigned char type;
void *handle;
int module_number;
1999-05-09 12:24:21 +00:00
};
1999-04-07 18:10:10 +00:00
extern HashTable module_registry;
extern void module_destructor(zend_module_entry *module);
extern int module_registry_cleanup(zend_module_entry *module);
extern int module_registry_request_startup(zend_module_entry *module);
#define ZEND_MODULE_DTOR (int (*)(void *)) module_destructor
1999-04-07 18:10:10 +00:00
#endif