summaryrefslogtreecommitdiff
path: root/ext/wddx
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-10-24 14:35:40 +0000
committerFelipe Pena <felipe@php.net>2008-10-24 14:35:40 +0000
commitdf100055639c42e28029cf2f6983246ed3f98c40 (patch)
tree3fc92443be993801103b84d66b1d4a1f943322f8 /ext/wddx
parentc96d79b2e69c732efc4005294c2aec461f662e4f (diff)
downloadphp-git-df100055639c42e28029cf2f6983246ed3f98c40.tar.gz
- MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro
Diffstat (limited to 'ext/wddx')
-rw-r--r--ext/wddx/wddx.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/wddx/wddx.c b/ext/wddx/wddx.c
index 04640a567b..6a5cae58f1 100644
--- a/ext/wddx/wddx.c
+++ b/ext/wddx/wddx.c
@@ -103,36 +103,30 @@ typedef struct {
static void php_wddx_process_data(void *user_data, const XML_Char *s, int len);
/* {{{ arginfo */
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_wddx_serialize_value, 0, 0, 1)
ZEND_ARG_INFO(0, var)
ZEND_ARG_INFO(0, comment)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_wddx_serialize_vars, 0, 0, 1)
ZEND_ARG_INFO(0, var_name)
ZEND_ARG_INFO(0, ...)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_wddx_serialize_start, 0, 0, 0)
ZEND_ARG_INFO(0, comment)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_wddx_packet_end, 0, 0, 1)
ZEND_ARG_INFO(0, packet_id)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_wddx_add_vars, 0, 0, 2)
ZEND_ARG_INFO(0, packet_id)
ZEND_ARG_INFO(0, var_name)
ZEND_ARG_INFO(0, ...)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_wddx_deserialize, 0, 0, 1)
ZEND_ARG_INFO(0, packet)
ZEND_END_ARG_INFO()