timezone_methods.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  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 TIMEZONE_METHODS_H
  17. #define TIMEZONE_METHODS_H
  18. #include <php.h>
  19. PHP_METHOD(IntlTimeZone, __construct);
  20. PHP_FUNCTION(intltz_create_time_zone);
  21. PHP_FUNCTION(intltz_from_date_time_zone);
  22. PHP_FUNCTION(intltz_create_default);
  23. PHP_FUNCTION(intltz_get_id);
  24. PHP_FUNCTION(intltz_get_gmt);
  25. PHP_FUNCTION(intltz_get_unknown);
  26. PHP_FUNCTION(intltz_create_enumeration);
  27. PHP_FUNCTION(intltz_count_equivalent_ids);
  28. PHP_FUNCTION(intltz_create_time_zone_id_enumeration);
  29. PHP_FUNCTION(intltz_get_canonical_id);
  30. PHP_FUNCTION(intltz_get_region);
  31. PHP_FUNCTION(intltz_get_tz_data_version);
  32. PHP_FUNCTION(intltz_get_equivalent_id);
  33. PHP_FUNCTION(intltz_use_daylight_time);
  34. PHP_FUNCTION(intltz_get_offset);
  35. PHP_FUNCTION(intltz_get_raw_offset);
  36. PHP_FUNCTION(intltz_has_same_rules);
  37. PHP_FUNCTION(intltz_get_display_name);
  38. PHP_FUNCTION(intltz_get_dst_savings);
  39. PHP_FUNCTION(intltz_to_date_time_zone);
  40. PHP_FUNCTION(intltz_get_error_code);
  41. PHP_FUNCTION(intltz_get_error_message);
  42. #endif /* #ifndef TIMEZONE_METHODS_H */