diff options
| author | Chuck Hagenbuch <chagenbu@php.net> | 2000-04-04 02:56:42 +0000 | 
|---|---|---|
| committer | Chuck Hagenbuch <chagenbu@php.net> | 2000-04-04 02:56:42 +0000 | 
| commit | d437ba907197428f3de0f0e2cd9fed7123aa0161 (patch) | |
| tree | 033ff02ba67f006077987c5e9a02a554b003e939 /ext/mcal/php_mcal.c | |
| parent | 8153dc57725b7b72eacaba352cf964d30fa63ebe (diff) | |
| download | php-git-d437ba907197428f3de0f0e2cd9fed7123aa0161.tar.gz | |
tweaks to prototypes
Diffstat (limited to 'ext/mcal/php_mcal.c')
| -rw-r--r-- | ext/mcal/php_mcal.c | 13 | 
1 files changed, 4 insertions, 9 deletions
diff --git a/ext/mcal/php_mcal.c b/ext/mcal/php_mcal.c index bf0f8c340d..f2af5e99ac 100644 --- a/ext/mcal/php_mcal.c +++ b/ext/mcal/php_mcal.c @@ -380,7 +380,7 @@ PHP_FUNCTION(mcal_popen)  }  /* {{{ proto int mcal_reopen(int stream_id, string calendar [, int options]) -   Reopen MCAL stream to new calendar */ +   Reopen MCAL stream to a new calendar */  PHP_FUNCTION(mcal_reopen)  {  	zval **streamind, **calendar, **options; @@ -417,9 +417,8 @@ PHP_FUNCTION(mcal_reopen)  }  /* }}} */ -  /* {{{ proto int mcal_expunge(int stream_id) -   Delete all messages marked for deletion */ +   Delete all events marked for deletion */  PHP_FUNCTION(mcal_expunge)  {  	zval **streamind; @@ -560,10 +559,8 @@ PHP_FUNCTION(mcal_list_events)  }  /* }}} */ -  /* {{{ proto string mcal_create_calendar(int stream_id, string calendar)     Create a new calendar */ -  PHP_FUNCTION(mcal_create_calendar)  {  	zval **streamind, **calendar; @@ -596,7 +593,6 @@ PHP_FUNCTION(mcal_create_calendar)  }  /* }}} */ -  /* {{{ proto string mcal_rename(int stream_id, string src_calendar, string dest_calendar)     Rename a calendar */  PHP_FUNCTION(mcal_rename_calendar) @@ -715,7 +711,7 @@ PHP_FUNCTION(mcal_delete_calendar)  /* }}} */  /* {{{ proto string mcal_delete_event(int stream_id, int uid) -   Delete event */ +   Delete an event */  PHP_FUNCTION(mcal_delete_event)  {  	zval **streamind, **uid; @@ -837,7 +833,6 @@ PHP_FUNCTION(mcal_snooze)  }  /* }}} */ -  /* {{{ proto string mcal_event_set_category(int stream_id, string category)     Attach a category to an event */  PHP_FUNCTION(mcal_event_set_category) @@ -1516,7 +1511,7 @@ PHP_FUNCTION(mcal_event_set_recur_monthly_mday)  /* }}} */  /* {{{ proto string mcal_event_set_recur_monthly_wday(int stream_id, int year, int month, int day, int interval) -   Create a monthy by week recurrence */ +   Create a monthly by week recurrence */  PHP_FUNCTION(mcal_event_set_recur_monthly_wday)  {  	zval **streamind, **year, **month, **day, **interval;  | 
