X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=src%2Fphp_pqtypes.h;h=1c5da1f2d1f6ad215db457bea96ec048e368a614;hp=8a551b104b151c9bcc601d054e708fbc8f8e563f;hb=6e28a8741be3fccdaca960e492c31bc26837a4ed;hpb=bffdeef967c851f5046a1dbed426f45611e507d0 diff --git a/src/php_pqtypes.h b/src/php_pqtypes.h index 8a551b1..1c5da1f 100644 --- a/src/php_pqtypes.h +++ b/src/php_pqtypes.h @@ -22,14 +22,13 @@ typedef struct php_pqtypes { } php_pqtypes_t; typedef struct php_pqtypes_object { - zend_object zo; - zend_object_value zv; - HashTable *prophandler; php_pqtypes_t *intern; + HashTable *prophandler; + zend_object zo; } php_pqtypes_object_t; extern zend_class_entry *php_pqtypes_class_entry; -extern zend_object_value php_pqtypes_create_object_ex(zend_class_entry *ce, php_pqtypes_t *intern, php_pqtypes_object_t **ptr TSRMLS_DC); +extern php_pqtypes_object_t *php_pqtypes_create_object_ex(zend_class_entry *ce, php_pqtypes_t *intern); extern PHP_MINIT_FUNCTION(pqtypes); extern PHP_MSHUTDOWN_FUNCTION(pqtypes);