hholzgra                Mon Sep 15 05:25:19 2003 EDT

  Modified files:              
    /php-src/ext/fam    fam.c 
  Log:
  proto descriptions
  
  
Index: php-src/ext/fam/fam.c
diff -u php-src/ext/fam/fam.c:1.5 php-src/ext/fam/fam.c:1.6
--- php-src/ext/fam/fam.c:1.5   Sun Jun 15 11:27:45 2003
+++ php-src/ext/fam/fam.c       Mon Sep 15 05:25:18 2003
@@ -15,7 +15,7 @@
   | Author: Sascha Schumann <[EMAIL PROTECTED]>                         |
   +----------------------------------------------------------------------+
 
-  $Id: fam.c,v 1.5 2003/06/15 15:27:45 andrey Exp $ 
+  $Id: fam.c,v 1.6 2003/09/15 09:25:18 hholzgra Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -183,7 +183,7 @@
 
 
 /* {{{ proto resource fam_open([string appname])
-    */
+   Open FAM connection */
 PHP_FUNCTION(fam_open)
 {
        char *appname = NULL;
@@ -208,7 +208,7 @@
 /* }}} */
 
 /* {{{ proto void fam_close(resource id)
-    */
+   Close FAM connection */
 PHP_FUNCTION(fam_close)
 {
        int argc = ZEND_NUM_ARGS();
@@ -222,7 +222,7 @@
 /* }}} */
 
 /* {{{ proto resource fam_monitor_directory(resource id, string dirname)
-    */
+   Monitor a directory for changes */
 PHP_FUNCTION(fam_monitor_directory)
 {
        char *dirname = NULL;
@@ -250,7 +250,7 @@
 /* }}} */
 
 /* {{{ proto resource fam_monitor_file(resource id, string filename)
-    */
+    Monitor a regular file for changes */
 PHP_FUNCTION(fam_monitor_file)
 {
        char *filename = NULL;
@@ -278,7 +278,7 @@
 /* }}} */
 
 /* {{{ proto resource fam_monitor_collection(resource id, string dirname, int depth, 
string mask)
-    */
+    Monitor a collection of files in a directory for changes */
 PHP_FUNCTION(fam_monitor_collection)
 {
        char *dirname = NULL;
@@ -310,7 +310,7 @@
 /* }}} */
 
 /* {{{ proto bool fam_suspend_monitor(resource id, resource monitor_id)
-    */
+   Temporary suspend monitoring */
 PHP_FUNCTION(fam_suspend_monitor)
 {
        int argc = ZEND_NUM_ARGS();
@@ -334,7 +334,7 @@
 /* }}} */
 
 /* {{{ proto bool fam_resume_monitor(resource id, resource monitor_id)
-    */
+   Resume suspended monitoring */
 PHP_FUNCTION(fam_resume_monitor)
 {
        int argc = ZEND_NUM_ARGS();
@@ -359,7 +359,7 @@
 /* }}} */
 
 /* {{{ proto bool fam_cancel_monitor(resource id, resource monitor_id)
-    */
+    Terminate monitoring */
 PHP_FUNCTION(fam_cancel_monitor)
 {
        int argc = ZEND_NUM_ARGS();
@@ -388,7 +388,7 @@
 /* }}} */
 
 /* {{{ proto int fam_pending(resource id)
-    */
+    Check for pending FAM events */
 PHP_FUNCTION(fam_pending)
 {
        int argc = ZEND_NUM_ARGS();
@@ -406,7 +406,7 @@
 /* }}} */
 
 /* {{{ proto array fam_next_event(resource id)
-    */
+    Get next pending FAM event */
 PHP_FUNCTION(fam_next_event)
 {
        int argc = ZEND_NUM_ARGS();

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to