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 
17 #ifndef CALENDAR_METHODS_H
18 #define CALENDAR_METHODS_H
19 
20 #include <php.h>
21 
22 PHP_METHOD(IntlCalendar, __construct);
23 
24 PHP_FUNCTION(intlcal_create_instance);
25 
26 PHP_FUNCTION(intlcal_get_keyword_values_for_locale);
27 
28 PHP_FUNCTION(intlcal_get_now);
29 
30 PHP_FUNCTION(intlcal_get_available_locales);
31 
32 PHP_FUNCTION(intlcal_get);
33 
34 PHP_FUNCTION(intlcal_get_time);
35 
36 PHP_FUNCTION(intlcal_set_time);
37 
38 PHP_FUNCTION(intlcal_add);
39 
40 PHP_FUNCTION(intlcal_set_time_zone);
41 
42 PHP_FUNCTION(intlcal_after);
43 
44 PHP_FUNCTION(intlcal_before);
45 
46 PHP_FUNCTION(intlcal_set);
47 
48 PHP_FUNCTION(intlcal_roll);
49 
50 PHP_FUNCTION(intlcal_clear);
51 
52 PHP_FUNCTION(intlcal_field_difference);
53 
54 PHP_FUNCTION(intlcal_get_actual_maximum);
55 
56 PHP_FUNCTION(intlcal_get_actual_minimum);
57 
58 PHP_FUNCTION(intlcal_get_day_of_week_type);
59 
60 PHP_FUNCTION(intlcal_get_first_day_of_week);
61 
62 PHP_FUNCTION(intlcal_get_greatest_minimum);
63 
64 PHP_FUNCTION(intlcal_get_least_maximum);
65 
66 PHP_FUNCTION(intlcal_get_locale);
67 
68 PHP_FUNCTION(intlcal_get_maximum);
69 
70 PHP_FUNCTION(intlcal_get_minimal_days_in_first_week);
71 
72 PHP_FUNCTION(intlcal_get_minimum);
73 
74 PHP_FUNCTION(intlcal_get_time_zone);
75 
76 PHP_FUNCTION(intlcal_get_type);
77 
78 PHP_FUNCTION(intlcal_get_weekend_transition);
79 
80 PHP_FUNCTION(intlcal_in_daylight_time);
81 
82 PHP_FUNCTION(intlcal_is_equivalent_to);
83 
84 PHP_FUNCTION(intlcal_is_lenient);
85 
86 PHP_FUNCTION(intlcal_is_set);
87 
88 PHP_FUNCTION(intlcal_is_weekend);
89 
90 PHP_FUNCTION(intlcal_set_first_day_of_week);
91 
92 PHP_FUNCTION(intlcal_set_lenient);
93 
94 PHP_FUNCTION(intlcal_set_minimal_days_in_first_week);
95 
96 PHP_FUNCTION(intlcal_equals);
97 
98 PHP_FUNCTION(intlcal_get_repeated_wall_time_option);
99 
100 PHP_FUNCTION(intlcal_get_skipped_wall_time_option);
101 
102 PHP_FUNCTION(intlcal_set_repeated_wall_time_option);
103 
104 PHP_FUNCTION(intlcal_set_skipped_wall_time_option);
105 
106 PHP_FUNCTION(intlcal_from_date_time);
107 
108 PHP_FUNCTION(intlcal_to_date_time);
109 
110 PHP_FUNCTION(intlcal_get_error_code);
111 
112 PHP_FUNCTION(intlcal_get_error_message);
113 
114 #endif /* #ifndef CALENDAR_METHODS_H */
115