xref: /PHP-5.5/ext/intl/locale/locale_class.h (revision 9762609c)
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: Kirti Velankar <kirtig@yahoo-inc.com>                       |
14    +----------------------------------------------------------------------+
15 */
16 
17 /* $Id$ */
18 
19 #ifndef LOCALE_CLASS_H
20 #define LOCALE_CLASS_H
21 
22 #include <php.h>
23 
24 #include "intl_common.h"
25 #include "intl_error.h"
26 
27 #include <unicode/uloc.h>
28 
29 typedef struct {
30 	zend_object     zo;
31 
32 	// ICU locale
33 	char*      		uloc1;
34 
35 } Locale_object;
36 
37 
38 void locale_register_Locale_class( TSRMLS_D );
39 
40 extern zend_class_entry *Locale_ce_ptr;
41 
42 /* Auxiliary macros */
43 
44 #define LOCALE_METHOD_INIT_VARS       \
45     zval*             	object  = NULL;   \
46     intl_error_reset( NULL TSRMLS_CC ); \
47 
48 #endif // #ifndef LOCALE_CLASS_H
49