summaryrefslogtreecommitdiff
path: root/ext/wddx
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2008-11-17 11:28:01 +0000
committerFelipe Pena <felipe@php.net>2008-11-17 11:28:01 +0000
commitfc2fb50d095d80a957117ecf52bd817a609e1dcf (patch)
tree7d0478dbb464dae103f296eaa7d5c6295d238ee9 /ext/wddx
parentdf3dc8d9749dcb8d1ab91d2a462a67ea369543f8 (diff)
downloadphp-git-fc2fb50d095d80a957117ecf52bd817a609e1dcf.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()