calendar_methods.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | http://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Gustavo Lopes <cataphract@netcabo.pt> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifndef CALENDAR_METHODS_H
  17. #define CALENDAR_METHODS_H
  18. #include <php.h>
  19. PHP_METHOD(IntlCalendar, __construct);
  20. PHP_FUNCTION(intlcal_create_instance);
  21. PHP_FUNCTION(intlcal_get_keyword_values_for_locale);
  22. PHP_FUNCTION(intlcal_get_now);
  23. PHP_FUNCTION(intlcal_get_available_locales);
  24. PHP_FUNCTION(intlcal_get);
  25. PHP_FUNCTION(intlcal_get_time);
  26. PHP_FUNCTION(intlcal_set_time);
  27. PHP_FUNCTION(intlcal_add);
  28. PHP_FUNCTION(intlcal_set_time_zone);
  29. PHP_FUNCTION(intlcal_after);
  30. PHP_FUNCTION(intlcal_before);
  31. PHP_FUNCTION(intlcal_set);
  32. PHP_FUNCTION(intlcal_roll);
  33. PHP_FUNCTION(intlcal_clear);
  34. PHP_FUNCTION(intlcal_field_difference);
  35. PHP_FUNCTION(intlcal_get_actual_maximum);
  36. PHP_FUNCTION(intlcal_get_actual_minimum);
  37. PHP_FUNCTION(intlcal_get_day_of_week_type);
  38. PHP_FUNCTION(intlcal_get_first_day_of_week);
  39. PHP_FUNCTION(intlcal_get_greatest_minimum);
  40. PHP_FUNCTION(intlcal_get_least_maximum);
  41. PHP_FUNCTION(intlcal_get_locale);
  42. PHP_FUNCTION(intlcal_get_maximum);
  43. PHP_FUNCTION(intlcal_get_minimal_days_in_first_week);
  44. PHP_FUNCTION(intlcal_get_minimum);
  45. PHP_FUNCTION(intlcal_get_time_zone);
  46. PHP_FUNCTION(intlcal_get_type);
  47. PHP_FUNCTION(intlcal_get_weekend_transition);
  48. PHP_FUNCTION(intlcal_in_daylight_time);
  49. PHP_FUNCTION(intlcal_is_equivalent_to);
  50. PHP_FUNCTION(intlcal_is_lenient);
  51. PHP_FUNCTION(intlcal_is_set);
  52. PHP_FUNCTION(intlcal_is_weekend);
  53. PHP_FUNCTION(intlcal_set_first_day_of_week);
  54. PHP_FUNCTION(intlcal_set_lenient);
  55. PHP_FUNCTION(intlcal_set_minimal_days_in_first_week);
  56. PHP_FUNCTION(intlcal_equals);
  57. PHP_FUNCTION(intlcal_get_repeated_wall_time_option);
  58. PHP_FUNCTION(intlcal_get_skipped_wall_time_option);
  59. PHP_FUNCTION(intlcal_set_repeated_wall_time_option);
  60. PHP_FUNCTION(intlcal_set_skipped_wall_time_option);
  61. PHP_FUNCTION(intlcal_from_date_time);
  62. PHP_FUNCTION(intlcal_to_date_time);
  63. PHP_FUNCTION(intlcal_get_error_code);
  64. PHP_FUNCTION(intlcal_get_error_message);
  65. #endif /* #ifndef CALENDAR_METHODS_H */