Skip to content

Commit

Permalink
removed static qualifier on arginfo
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-lb committed Oct 24, 2008
1 parent 687e6ba commit b1a2502
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions inotify.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,24 @@
#include "php_inotify.h"

/* {{{ arginfo */
static
ZEND_BEGIN_ARG_INFO_EX(arginfo_inotify_init, 0, ZEND_RETURN_VALUE, 0)
ZEND_END_ARG_INFO()

static
ZEND_BEGIN_ARG_INFO_EX(arginfo_inotify_add_watch, 0, ZEND_RETURN_VALUE, 3)
ZEND_ARG_INFO(0, inotify_instance)
ZEND_ARG_INFO(0, pathname)
ZEND_ARG_INFO(0, mask)
ZEND_END_ARG_INFO()

static
ZEND_BEGIN_ARG_INFO_EX(arginfo_inotify_rm_watch, 0, ZEND_RETURN_VALUE, 2)
ZEND_ARG_INFO(0, inotify_instance)
ZEND_ARG_INFO(0, mask)
ZEND_END_ARG_INFO()

static
ZEND_BEGIN_ARG_INFO_EX(arginfo_inotify_queue_len, 0, ZEND_RETURN_VALUE, 1)
ZEND_ARG_INFO(0, inotify_instance)
ZEND_END_ARG_INFO()

static
ZEND_BEGIN_ARG_INFO_EX(arginfo_inotify_read, 0, ZEND_RETURN_VALUE, 1)
ZEND_ARG_INFO(0, inotify_instance)
ZEND_END_ARG_INFO()
Expand Down

0 comments on commit b1a2502

Please sign in to comment.