diff options
Diffstat (limited to 'ext/rpc/php_rpc.h')
-rw-r--r-- | ext/rpc/php_rpc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/rpc/php_rpc.h b/ext/rpc/php_rpc.h index be95b20940..32074ee70d 100644 --- a/ext/rpc/php_rpc.h +++ b/ext/rpc/php_rpc.h @@ -18,15 +18,19 @@ extern zend_module_entry rpc_module_entry; ZEND_MINIT_FUNCTION(rpc); ZEND_MSHUTDOWN_FUNCTION(rpc); +ZEND_RINIT_FUNCTION(rpc); +ZEND_RSHUTDOWN_FUNCTION(rpc); ZEND_MINFO_FUNCTION(rpc); ZEND_FUNCTION(rpc_load); ZEND_FUNCTION(rpc_call); ZEND_FUNCTION(rpc_set); ZEND_FUNCTION(rpc_get); +ZEND_FUNCTION(rpc_singleton); +ZEND_FUNCTION(rpc_poolable); ZEND_BEGIN_MODULE_GLOBALS(rpc) - int dummy; + TsHashTable *proxy; ZEND_END_MODULE_GLOBALS(rpc) #ifdef ZTS |