Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Commit

Permalink
Added reflection/arginfo macros
Browse files Browse the repository at this point in the history
  • Loading branch information
tuner committed Jan 5, 2011
1 parent bb01df7 commit c19323a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions igbinary.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,15 @@ inline static int igbinary_unserialize_ref(struct igbinary_unserialize_data *igs

static int igbinary_unserialize_zval(struct igbinary_unserialize_data *igsd, zval **z TSRMLS_DC);
/* }}} */
/* {{{ arginfo */
ZEND_BEGIN_ARG_INFO_EX(arginfo_igbinary_serialize, 0, 0, 1)
ZEND_ARG_INFO(0, value)
ZEND_END_ARG_INFO()

ZEND_BEGIN_ARG_INFO_EX(arginfo_igbinary_unserialize, 0, 0, 1)
ZEND_ARG_INFO(0, str)
ZEND_END_ARG_INFO()
/* }}} */
/* {{{ igbinary_functions[] */
/** Exported php functions. */
zend_function_entry igbinary_functions[] = {
Expand Down

0 comments on commit c19323a

Please sign in to comment.