php_calendar.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef PHP_CALENDAR_H
  2. #define PHP_CALENDAR_H
  3. extern zend_module_entry calendar_module_entry;
  4. #define calendar_module_ptr &calendar_module_entry
  5. /* Functions */
  6. PHP_MINIT_FUNCTION(calendar);
  7. PHP_MINFO_FUNCTION(calendar);
  8. PHP_FUNCTION(jdtogregorian);
  9. PHP_FUNCTION(gregoriantojd);
  10. PHP_FUNCTION(jdtojulian);
  11. PHP_FUNCTION(juliantojd);
  12. PHP_FUNCTION(jdtojewish);
  13. PHP_FUNCTION(jewishtojd);
  14. PHP_FUNCTION(jdtofrench);
  15. PHP_FUNCTION(frenchtojd);
  16. PHP_FUNCTION(jddayofweek);
  17. PHP_FUNCTION(jdmonthname);
  18. PHP_FUNCTION(easter_days);
  19. PHP_FUNCTION(easter_date);
  20. PHP_FUNCTION(unixtojd);
  21. PHP_FUNCTION(jdtounix);
  22. PHP_FUNCTION(cal_from_jd);
  23. PHP_FUNCTION(cal_to_jd);
  24. PHP_FUNCTION(cal_days_in_month);
  25. PHP_FUNCTION(cal_info);
  26. #define phpext_calendar_ptr calendar_module_ptr
  27. /*
  28. * Specifying the easter calculation method
  29. *
  30. * DEFAULT is Anglican, ie. use Julian calendar before 1753
  31. * and Gregorian after that. With ROMAN, the cutoff year is 1582.
  32. * ALWAYS_GREGORIAN and ALWAYS_JULIAN force the calendar
  33. * regardless of date.
  34. *
  35. */
  36. #define CAL_EASTER_DEFAULT 0
  37. #define CAL_EASTER_ROMAN 1
  38. #define CAL_EASTER_ALWAYS_GREGORIAN 2
  39. #define CAL_EASTER_ALWAYS_JULIAN 3
  40. #endif