diff options
author | Egon Schmid <eschmid@php.net> | 2000-02-24 16:36:07 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-02-24 16:36:07 +0000 |
commit | c846de3fb4d478e1bea3eb5c4e56a0ab891261d7 (patch) | |
tree | b71d9240c6fcff6a2a2cffbcb99737da18f87754 /ext/icap/php_icap.c | |
parent | 0178fb1ab5ca4c0e0e428a57586368aed050623d (diff) | |
download | php-git-c846de3fb4d478e1bea3eb5c4e56a0ab891261d7.tar.gz |
More protos.
Diffstat (limited to 'ext/icap/php_icap.c')
-rw-r--r-- | ext/icap/php_icap.c | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/ext/icap/php_icap.c b/ext/icap/php_icap.c index 8c4e8371b3..518b7dfe94 100644 --- a/ext/icap/php_icap.c +++ b/ext/icap/php_icap.c @@ -197,8 +197,6 @@ void php_icap_do_open(INTERNAL_FUNCTION_PARAMETERS, int persistent) } - - /* {{{ proto int icap_close(int stream_id [, int options]) Close an ICAP stream */ PHP_FUNCTION(icap_close) @@ -230,12 +228,6 @@ PHP_FUNCTION(icap_close) /* }}} */ - - - - - - /* {{{ proto int icap_open(string calendar, string user, string password [, int options]) Open an ICAP stream to a calendar */ PHP_FUNCTION(icap_open) @@ -319,7 +311,7 @@ PHP_FUNCTION(icap_expunge) /* }}} */ /* {{{ proto int icap_fetch_event(int stream_id,int eventid, [int options]) - Fetch an event*/ + Fetch an event */ PHP_FUNCTION(icap_fetch_event) { pval *streamind,*eventid,*start,*end,*options=NULL; @@ -542,7 +534,7 @@ PHP_FUNCTION(icap_rename_calendar) /* {{{ proto int icap_reopen(int stream_id, array date, array time) - list alarms for a given time */ + List alarms for a given time */ PHP_FUNCTION(icap_list_alarms) { pval *streamind, *date,*time; @@ -654,7 +646,7 @@ PHP_FUNCTION(icap_delete_calendar) /* {{{ proto string icap_delete_event(int stream_id, int uid) - Delete event*/ + Delete event */ PHP_FUNCTION(icap_delete_event) { pval *streamind, *uid; @@ -698,7 +690,7 @@ PHP_FUNCTION(icap_popen) /* {{{ proto string icap_store_event(int stream_id, object event) - Store an event*/ + Store an event */ PHP_FUNCTION(icap_store_event) { pval *streamind,*storeobject; @@ -850,7 +842,7 @@ PHP_FUNCTION(icap_store_event) /* {{{ proto string icap_snooze(int stream_id, int uid) - Snooze an alarm*/ + Snooze an alarm */ PHP_FUNCTION(icap_snooze) { pval *streamind,*uid; @@ -912,10 +904,6 @@ void cc_searched (unsigned long cal_uid) } - - - - void cc_appended(u_int32_t uid) { |