diff options
| author | Zeev Suraski <zeev@php.net> | 1999-12-18 22:40:35 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-12-18 22:40:35 +0000 |
| commit | a1ad2872eebc17448b115a1817e95b63e3ad17e9 (patch) | |
| tree | 6088dc4e590fdc5f85baa8bfe6534aece3fba960 /ext/fdf | |
| parent | f1fcb022be33716d345197de1fde63ad2bcdafca (diff) | |
| download | php-git-a1ad2872eebc17448b115a1817e95b63e3ad17e9.tar.gz | |
- The tree compiles again
Diffstat (limited to 'ext/fdf')
| -rw-r--r-- | ext/fdf/fdf.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/fdf/fdf.c b/ext/fdf/fdf.c index 6b40b5cf74..19c5109296 100644 --- a/ext/fdf/fdf.c +++ b/ext/fdf/fdf.c @@ -129,7 +129,7 @@ PHP_FUNCTION(fdf_open) { FDF_TLS_VARS; - if (ARG_COUNT(ht) != 1 || getParametersEx(1, &file) == FAILURE) { + if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1, &file) == FAILURE) { WRONG_PARAM_COUNT; } @@ -153,7 +153,7 @@ PHP_FUNCTION(fdf_close) { FDFDoc fdf; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 1 || getParametersEx(1, &arg1) == FAILURE) { + if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1, &arg1) == FAILURE) { WRONG_PARAM_COUNT; } @@ -201,7 +201,7 @@ PHP_FUNCTION(fdf_get_value) { FDFErc err; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 2 || getParametersEx(2, &arg1, &arg2) == FAILURE) { + if (ARG_COUNT(ht) != 2 || zend_get_parameters_ex(2, &arg1, &arg2) == FAILURE) { WRONG_PARAM_COUNT; } @@ -242,7 +242,7 @@ PHP_FUNCTION(fdf_set_value) { FDFErc err; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 4 || getParametersEx(4, &arg1, &arg2,&arg3, &arg4) == FAILURE) { + if (ARG_COUNT(ht) != 4 || zend_get_parameters_ex(4, &arg1, &arg2,&arg3, &arg4) == FAILURE) { WRONG_PARAM_COUNT; } @@ -280,7 +280,7 @@ PHP_FUNCTION(fdf_next_field_name) { if((argc > 2) || (argc < 1)) WRONG_PARAM_COUNT; - if (getParametersArrayEx(argc, argv) == FAILURE) { + if (zend_get_parameters_array_ex(argc, argv) == FAILURE) { WRONG_PARAM_COUNT; } @@ -323,7 +323,7 @@ PHP_FUNCTION(fdf_set_ap) { FDFAppFace face; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 5 || getParametersEx(5, &arg1, &arg2,&arg3, &arg4, &arg5) == FAILURE) { + if (ARG_COUNT(ht) != 5 || zend_get_parameters_ex(5, &arg1, &arg2,&arg3, &arg4, &arg5) == FAILURE) { WRONG_PARAM_COUNT; } @@ -372,7 +372,7 @@ PHP_FUNCTION(fdf_set_status) { FDFErc err; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 2 || getParametersEx(2, &arg1, &arg2) == FAILURE) { + if (ARG_COUNT(ht) != 2 || zend_get_parameters_ex(2, &arg1, &arg2) == FAILURE) { WRONG_PARAM_COUNT; } @@ -404,7 +404,7 @@ PHP_FUNCTION(fdf_get_status) { FDFErc err; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 1 || getParametersEx(1, &arg1) == FAILURE) { + if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1, &arg1) == FAILURE) { WRONG_PARAM_COUNT; } @@ -439,7 +439,7 @@ PHP_FUNCTION(fdf_set_file) { FDFErc err; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 2 || getParametersEx(2, &arg1, &arg2) == FAILURE) { + if (ARG_COUNT(ht) != 2 || zend_get_parameters_ex(2, &arg1, &arg2) == FAILURE) { WRONG_PARAM_COUNT; } @@ -471,7 +471,7 @@ PHP_FUNCTION(fdf_get_file) { FDFErc err; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 1 || getParametersEx(1, &arg1) == FAILURE) { + if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1, &arg1) == FAILURE) { WRONG_PARAM_COUNT; } @@ -506,7 +506,7 @@ PHP_FUNCTION(fdf_save) { FDFErc err; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 2 || getParametersEx(2, &arg1, &arg2) == FAILURE) { + if (ARG_COUNT(ht) != 2 || zend_get_parameters_ex(2, &arg1, &arg2) == FAILURE) { WRONG_PARAM_COUNT; } @@ -536,7 +536,7 @@ PHP_FUNCTION(fdf_add_template) { pdfFileSpecRec filespec; FDF_TLS_VARS; - if (ARG_COUNT(ht) != 5 || getParametersEx(5, &arg1, &arg2,&arg3, &arg4, &arg5) == FAILURE) { + if (ARG_COUNT(ht) != 5 || zend_get_parameters_ex(5, &arg1, &arg2,&arg3, &arg4, &arg5) == FAILURE) { WRONG_PARAM_COUNT; } |
