|
build php_ice 1.1.1 error. proxy.cpp line 183
proxy.cpp line 183:
_handlers.clone_obj = handleClone;
_handlers.clone_obj is define to :
(zend_object_handlers.h line 104)
typedef struct _zend_object_handlers {
...
zend_object_clone_obj_t clone_obj;
...
but the handleClone is define to :
zend_object_value handleClone(zval* TSRMLS_DC);
that is not compatibility with zend_object_clone_obj_t:
typedef zend_object_value (*zend_object_clone_obj_t)(zval *object TSRMLS_DC);
I got build error in vs.net 2003.
Thanks for you see it and help me to fix it.
|