diff options
author | Harald Radi <phanto@php.net> | 2002-06-09 14:51:41 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2002-06-09 14:51:41 +0000 |
commit | c55e855fdd5c78d5cea74202e7c770edf7a7df24 (patch) | |
tree | 89f251bd72a2a2321bc033a8209f99b277ab45bf /ext/rpc/php_rpc.h | |
parent | ecad1fbc5adcd7415b6356c65efa61f8be9f5a6d (diff) | |
download | php-git-c55e855fdd5c78d5cea74202e7c770edf7a7df24.tar.gz |
- using stas' abstraction now
- layer can add individual ini settings now
- classentries for the loaded rpc object are created dynamically now
class hirarchy looks like: rpc<-[layer]<-[object] (e.g. rpc<-com<-adodb),
thus the whole class tree is reflected into php
- added user-functions to mark an object as a singleton and as poolable
#rest of the linuxtag work
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 |