From e50228ab5ba229a68031e8b90935e678f86bab0f Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Wed, 7 Aug 2002 18:29:36 +0000 Subject: -new functions php_error_func<0> to support unified error messages #read followup --- main/php.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index 9fe824949e..dbf0fdd68a 100644 --- a/main/php.h +++ b/main/php.h @@ -255,6 +255,11 @@ int cfgparse(void); #define php_error zend_error +/* PHPAPI void php_error(int type, const char *format, ...); */ +PHPAPI void php_error_func0(int type TSRMLS_DC, const char *format, ...); +PHPAPI void php_error_func1(int type, const char *param1 TSRMLS_DC, const char *format, ...); +PHPAPI void php_error_func2(int type, const char *param1, const char *param2 TSRMLS_DC, const char *format, ...); + #define zenderror phperror #define zendlex phplex -- cgit v1.2.1