123456789101112 |
- #ifndef _PHPGO_EXTENSION_H_
- #define _PHPGO_EXTENSION_H_
- extern void* phpgo_get_module(char *name, char *version);
- extern int phpgo_get_module_number();
- void phpgo_register_init_functions(void *module_startup_func, void *module_shutdown_func,
- void *request_startup_func, void *request_shutdown_func);
- extern int zend_add_function(int cidx, int fidx, int cbid, char *name, char *atys, int rety);
- extern int zend_add_class(int cidx, char *name);
- extern int zend_add_method(int cidx, int fidx, int cbid, char *name, char *mname, char *atys, int rety);
- #endif
|