diff options
author | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
commit | 078bcec0997ad0e07b720c43cc9e6d0e046a75ab (patch) | |
tree | 36cb0f6be2ef078fe3374de8c087b93ecf82f812 /ext/mcal/php_mcal.h | |
parent | fd61f69077f6156ca71dde60ecfd9ed9765a02db (diff) | |
download | php-git-PHP-5.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PHP_5'.PHP-5
Diffstat (limited to 'ext/mcal/php_mcal.h')
-rw-r--r-- | ext/mcal/php_mcal.h | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/ext/mcal/php_mcal.h b/ext/mcal/php_mcal.h deleted file mode 100644 index 1845b4cfd1..0000000000 --- a/ext/mcal/php_mcal.h +++ /dev/null @@ -1,64 +0,0 @@ -/* $Id$ */ - -#ifndef PHP_MCAL_H -#define PHP_MCAL_H - -#if HAVE_MCAL - -/* Functions accessable to PHP */ -extern zend_module_entry php_mcal_module_entry; -#define php_mcal_module_ptr &php_mcal_module_entry - -extern int mcal_init_request(INIT_FUNC_ARGS); -extern int mcal_end_request(void); - -PHP_MINIT_FUNCTION(mcal); -PHP_MINFO_FUNCTION(mcal); - -PHP_FUNCTION(mcal_open); -PHP_FUNCTION(mcal_popen); -PHP_FUNCTION(mcal_reopen); -PHP_FUNCTION(mcal_close); -PHP_FUNCTION(mcal_fetch_event); -PHP_FUNCTION(mcal_list_events); -PHP_FUNCTION(mcal_create_calendar); -PHP_FUNCTION(mcal_rename_calendar); -PHP_FUNCTION(mcal_delete_calendar); -PHP_FUNCTION(mcal_append_event); -PHP_FUNCTION(mcal_store_event); -PHP_FUNCTION(mcal_delete_event); -PHP_FUNCTION(mcal_snooze); -PHP_FUNCTION(mcal_list_alarms); -PHP_FUNCTION(mcal_event_set_category); -PHP_FUNCTION(mcal_event_set_title); -PHP_FUNCTION(mcal_event_set_description); -PHP_FUNCTION(mcal_event_set_start); -PHP_FUNCTION(mcal_event_set_end); -PHP_FUNCTION(mcal_event_set_alarm); -PHP_FUNCTION(mcal_event_set_class); -PHP_FUNCTION(mcal_event_add_attribute); -PHP_FUNCTION(mcal_is_leap_year); -PHP_FUNCTION(mcal_days_in_month); -PHP_FUNCTION(mcal_date_valid); -PHP_FUNCTION(mcal_time_valid); -PHP_FUNCTION(mcal_day_of_week); -PHP_FUNCTION(mcal_day_of_year); -PHP_FUNCTION(mcal_week_of_year); -PHP_FUNCTION(mcal_date_compare); -PHP_FUNCTION(mcal_event_init); -PHP_FUNCTION(mcal_next_recurrence); -PHP_FUNCTION(mcal_event_set_recur_none); -PHP_FUNCTION(mcal_event_set_recur_daily); -PHP_FUNCTION(mcal_event_set_recur_weekly); -PHP_FUNCTION(mcal_event_set_recur_monthly_mday); -PHP_FUNCTION(mcal_event_set_recur_monthly_wday); -PHP_FUNCTION(mcal_event_set_recur_yearly); -PHP_FUNCTION(mcal_fetch_current_stream_event); - -#else -#define php_mcal_module_ptr NULL -#endif /* HAVE_MCAL */ - -#define phpext_mcal_ptr php_mcal_module_ptr - -#endif |