diff options
author | Stanislav Malyshev <stas@php.net> | 2008-07-07 22:51:04 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2008-07-07 22:51:04 +0000 |
commit | 0d16b1516b6b9ef0c2696bc19069e4cda5aee0ea (patch) | |
tree | df4e6a46dea0afafdbc912919b32c2806841a4eb /ext/intl/php_intl.h | |
parent | 3bab7c18ac205863af3df740144be23c18cf7a72 (diff) | |
download | php-git-0d16b1516b6b9ef0c2696bc19069e4cda5aee0ea.tar.gz |
Merge intl extension into core
Diffstat (limited to 'ext/intl/php_intl.h')
-rwxr-xr-x | ext/intl/php_intl.h | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/ext/intl/php_intl.h b/ext/intl/php_intl.h new file mode 100755 index 0000000000..92663444e0 --- /dev/null +++ b/ext/intl/php_intl.h @@ -0,0 +1,76 @@ +/* + +----------------------------------------------------------------------+ + | PHP Version 5 | + +----------------------------------------------------------------------+ + | This source file is subject to version 3.01 of the PHP license, | + | that is bundled with this package in the file LICENSE, and is | + | available through the world-wide-web at the following url: | + | http://www.php.net/license/3_01.txt | + | If you did not receive a copy of the PHP license and are unable to | + | obtain it through the world-wide-web, please send a note to | + | license@php.net so we can mail you a copy immediately. | + +----------------------------------------------------------------------+ + | Authors: Vadim Savchuk <vsavchuk@productengine.com> | + | Dmitry Lakhtyuk <dlakhtyuk@productengine.com> | + | Stanislav Malyshev <stas@zend.com> | + | Kirti Velankar <kirtig@yahoo-inc.com> | + +----------------------------------------------------------------------+ + */ + +#ifndef PHP_INTL_H +#define PHP_INTL_H + +#include <php.h> + +#include "collator/collator_sort.h" +#include "grapheme/grapheme.h" +#include "intl_error.h" + +extern zend_module_entry intl_module_entry; +#define phpext_intl_ptr &intl_module_entry + +#ifdef PHP_WIN32 +#define PHP_INTL_API __declspec(dllexport) +#else +#define PHP_INTL_API +#endif + +#ifdef ZTS +#include "TSRM.h" +#endif + +ZEND_BEGIN_MODULE_GLOBALS(intl) + zval* current_collator; + char* default_locale; + collator_compare_func_t compare_func; + UBreakIterator* grapheme_iterator; + intl_error g_error; +ZEND_END_MODULE_GLOBALS(intl) + +/* Macro to access request-wide global variables. */ +#ifdef ZTS +#define INTL_G(v) TSRMG(intl_globals_id, zend_intl_globals *, v) +#else +#define INTL_G(v) (intl_globals.v) +#endif + +ZEND_EXTERN_MODULE_GLOBALS(intl) + +PHP_MINIT_FUNCTION(intl); +PHP_MSHUTDOWN_FUNCTION(intl); +PHP_RINIT_FUNCTION(intl); +PHP_RSHUTDOWN_FUNCTION(intl); +PHP_MINFO_FUNCTION(intl); + +#define PHP_INTL_VERSION "1.0.0" + +#endif /* PHP_INTL_H */ + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * End: + * vim600: noet sw=4 ts=4 fdm=marker + * vim<600: noet sw=4 ts=4 + */ |