summaryrefslogtreecommitdiff
path: root/ext/intl/intl_error.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-12-18 10:09:02 +0100
committerAnatol Belski <ab@php.net>2014-12-18 10:09:02 +0100
commit4b943c9c0dd4114adc78416c5241f11ad5c98a80 (patch)
treec9628d91eae3f580f9ebd73d2372e4c9089b2e00 /ext/intl/intl_error.h
parent79354ba6d0d6a1a4596f9ac66ee9bc3a34ed972b (diff)
parentdec8eb431adee340fb8dfb9ff33ed29d3279c35f (diff)
downloadphp-git-POST_NATIVE_TLS_MERGE.tar.gz
Merge remote-tracking branch 'origin/native-tls'POST_NATIVE_TLS_MERGE
Diffstat (limited to 'ext/intl/intl_error.h')
-rw-r--r--ext/intl/intl_error.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/intl/intl_error.h b/ext/intl/intl_error.h
index b800d10dbf..02d62f0299 100644
--- a/ext/intl/intl_error.h
+++ b/ext/intl/intl_error.h
@@ -31,25 +31,25 @@ typedef struct _intl_error {
int free_custom_error_message;
} intl_error;
-intl_error* intl_error_create( TSRMLS_D );
-void intl_error_init( intl_error* err TSRMLS_DC );
-void intl_error_reset( intl_error* err TSRMLS_DC );
-void intl_error_set_code( intl_error* err, UErrorCode err_code TSRMLS_DC );
-void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC );
-void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
-UErrorCode intl_error_get_code( intl_error* err TSRMLS_DC );
-zend_string* intl_error_get_message( intl_error* err TSRMLS_DC );
+intl_error* intl_error_create( void );
+void intl_error_init( intl_error* err );
+void intl_error_reset( intl_error* err );
+void intl_error_set_code( intl_error* err, UErrorCode err_code );
+void intl_error_set_custom_msg( intl_error* err, char* msg, int copyMsg );
+void intl_error_set( intl_error* err, UErrorCode code, char* msg, int copyMsg );
+UErrorCode intl_error_get_code( intl_error* err );
+zend_string* intl_error_get_message( intl_error* err );
// Wrappers to synchonize object's and global error structures.
-void intl_errors_reset( intl_error* err TSRMLS_DC );
-void intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg TSRMLS_DC );
-void intl_errors_set_code( intl_error* err, UErrorCode err_code TSRMLS_DC );
-void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg TSRMLS_DC );
+void intl_errors_reset( intl_error* err );
+void intl_errors_set_custom_msg( intl_error* err, char* msg, int copyMsg );
+void intl_errors_set_code( intl_error* err, UErrorCode err_code );
+void intl_errors_set( intl_error* err, UErrorCode code, char* msg, int copyMsg );
// Other error helpers
smart_str intl_parse_error_to_string( UParseError* pe );
// exported to be called on extension MINIT
-void intl_register_IntlException_class( TSRMLS_D );
+void intl_register_IntlException_class( void );
#endif // INTL_ERROR_H