X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=src%2Fphp_pqcopy.h;fp=src%2Fphp_pqcopy.h;h=dbac9a39906766b915406582721942fcaab40aa7;hp=130a1f29ebd1bbc3eb04ae32cf799216d18feb50;hb=6e28a8741be3fccdaca960e492c31bc26837a4ed;hpb=bffdeef967c851f5046a1dbed426f45611e507d0 diff --git a/src/php_pqcopy.h b/src/php_pqcopy.h index 130a1f2..dbac9a3 100644 --- a/src/php_pqcopy.h +++ b/src/php_pqcopy.h @@ -35,14 +35,13 @@ typedef struct php_pqcopy { } php_pqcopy_t; typedef struct php_pqcopy_object { - zend_object zo; - zend_object_value zv; - HashTable *prophandler; php_pqcopy_t *intern; + HashTable *prophandler; + zend_object zo; } php_pqcopy_object_t; extern zend_class_entry *php_pqcopy_class_entry; -extern zend_object_value php_pqcopy_create_object_ex(zend_class_entry *ce, php_pqcopy_t *intern, php_pqcopy_object_t **ptr TSRMLS_DC); +extern php_pqcopy_object_t *php_pqcopy_create_object_ex(zend_class_entry *ce, php_pqcopy_t *intern); extern PHP_MINIT_FUNCTION(pqcopy); extern PHP_MSHUTDOWN_FUNCTION(pqcopy);