You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
5 years ago
|
%define %pass_by_ref( TYPE, CONVERT_IN, CONVERT_OUT )
|
||
|
%typemap(in) TYPE *REF ($*1_ltype tmp),
|
||
|
TYPE &REF ($*1_ltype tmp)
|
||
|
%{
|
||
|
/* First Check for SWIG wrapped type */
|
||
|
if ( ZVAL_IS_NULL( *$input ) ) {
|
||
|
$1 = 0;
|
||
|
} else if ( PZVAL_IS_REF( *$input ) ) {
|
||
|
/* Not swig wrapped type, so we check if it's a PHP reference type */
|
||
|
CONVERT_IN( tmp, $*1_ltype, $input );
|
||
|
$1 = &tmp;
|
||
|
} else {
|
||
|
SWIG_PHP_Error( E_ERROR, SWIG_PHP_Arg_Error_Msg($argnum, Expected a reference) );
|
||
|
}
|
||
|
%}
|
||
|
%typemap(argout) TYPE *REF,
|
||
|
TYPE &REF
|
||
|
"CONVERT_OUT(*$input, tmp$argnum );";
|
||
|
%enddef
|
||
|
|
||
|
%pass_by_ref( size_t, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
|
||
|
%pass_by_ref( signed int, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
%pass_by_ref( int, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
%pass_by_ref( unsigned int, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
|
||
|
%pass_by_ref( signed short, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
%pass_by_ref( short, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
%pass_by_ref( unsigned short, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
|
||
|
%pass_by_ref( signed long, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
%pass_by_ref( long, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
%pass_by_ref( unsigned long, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
|
||
|
%pass_by_ref( signed char, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
%pass_by_ref( char, CONVERT_CHAR_IN, ZVAL_STRING );
|
||
|
%pass_by_ref( unsigned char, CONVERT_INT_IN, ZVAL_LONG );
|
||
|
|
||
|
%pass_by_ref( float, CONVERT_FLOAT_IN, ZVAL_DOUBLE );
|
||
|
%pass_by_ref( double, CONVERT_FLOAT_IN, ZVAL_DOUBLE );
|
||
|
|
||
|
%pass_by_ref( char *, CONVERT_CHAR_IN, ZVAL_STRING );
|