summaryrefslogtreecommitdiff
path: root/ext/rpc/php_rpc.h
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2002-05-31 00:23:08 +0000
committerSVN Migration <svn@php.net>2002-05-31 00:23:08 +0000
commit86976a076b5d0941e1368fb14bf382ea594550bf (patch)
tree8b2e3322d23218d88d8cda6b538f74b516070e5c /ext/rpc/php_rpc.h
parent6d1a3716dd0726f06ca54976ebeb14526340463f (diff)
downloadphp-git-BEFORE_OBJECTS_STORE.tar.gz
This commit was manufactured by cvs2svn to create tagBEFORE_OBJECTS_STORE
'BEFORE_OBJECTS_STORE'.
Diffstat (limited to 'ext/rpc/php_rpc.h')
-rw-r--r--ext/rpc/php_rpc.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/ext/rpc/php_rpc.h b/ext/rpc/php_rpc.h
deleted file mode 100644
index be95b20940..0000000000
--- a/ext/rpc/php_rpc.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef PHP_RPC_H
-#define PHP_RPC_H
-
-#include "zend.h"
-
-extern zend_module_entry rpc_module_entry;
-#define phpext_rpc_ptr &rpc_module_entry
-
-#ifdef PHP_WIN32
-#define PHP_RPC_API __declspec(dllexport)
-#else
-#define PHP_RPC_API
-#endif
-
-#ifdef ZTS
-#include "TSRM.h"
-#endif
-
-ZEND_MINIT_FUNCTION(rpc);
-ZEND_MSHUTDOWN_FUNCTION(rpc);
-ZEND_MINFO_FUNCTION(rpc);
-
-ZEND_FUNCTION(rpc_load);
-ZEND_FUNCTION(rpc_call);
-ZEND_FUNCTION(rpc_set);
-ZEND_FUNCTION(rpc_get);
-
-ZEND_BEGIN_MODULE_GLOBALS(rpc)
- int dummy;
-ZEND_END_MODULE_GLOBALS(rpc)
-
-#ifdef ZTS
-#define RPC_G(v) TSRMG(rpc_globals_id, zend_rpc_globals *, v)
-#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