summaryrefslogtreecommitdiff
path: root/ext/rpc/php_rpc.h
diff options
context:
space:
mode:
authorHarald Radi <phanto@php.net>2002-03-15 23:28:10 +0000
committerHarald Radi <phanto@php.net>2002-03-15 23:28:10 +0000
commitc1fe9cd279336ad7d6aee3941330e761fa8a0edc (patch)
tree671e875b96f84c13df8932f8631cec6ab10c5b49 /ext/rpc/php_rpc.h
parent207f26ae91660a6e3ce3763482f3da25c1001fb0 (diff)
downloadphp-git-c1fe9cd279336ad7d6aee3941330e761fa8a0edc.tar.gz
ongoing development ...
Diffstat (limited to 'ext/rpc/php_rpc.h')
-rw-r--r--ext/rpc/php_rpc.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/ext/rpc/php_rpc.h b/ext/rpc/php_rpc.h
index e0ae67f89e..96e4e21942 100644
--- a/ext/rpc/php_rpc.h
+++ b/ext/rpc/php_rpc.h
@@ -20,10 +20,13 @@ PHP_MINIT_FUNCTION(rpc);
PHP_MSHUTDOWN_FUNCTION(rpc);
PHP_MINFO_FUNCTION(rpc);
+ZEND_FUNCTION(rpc_load);
+ZEND_FUNCTION(rpc_call);
+ZEND_FUNCTION(rpc_set);
+ZEND_FUNCTION(rpc_get);
+
ZEND_BEGIN_MODULE_GLOBALS(rpc)
- zend_object_handle handle;
- HashTable *instance;
- HashTable *handlers;
+ int dummy;
ZEND_END_MODULE_GLOBALS(rpc)
#ifdef ZTS
@@ -31,5 +34,7 @@ ZEND_END_MODULE_GLOBALS(rpc)
#else
#define RPC_G(v) (rpc_globals.v)
#endif
+
+#define phpext_rpc_ptr &rpc_module_entry
#endif /* PHP_RPC_H */ \ No newline at end of file