- simplify
[m6w6/ext-http] / php_http_inflatestream_object.h
index 0853d041f4bed2ba3414811117b14227f6e59bed..783cf8b25c5da577c1eb796d325de7711ac3be37 100644 (file)
@@ -16,7 +16,7 @@
 #define PHP_HTTP_INFLATESTREAM_OBJECT_H
 #if defined(ZEND_ENGINE_2) && defined(HTTP_HAVE_ZLIB)
 
-typedef struct {
+typedef struct _http_inflatestream_object_t {
        zend_object zo;
        http_encoding_stream *stream;
 } http_inflatestream_object;
@@ -35,6 +35,8 @@ extern zend_object_value _http_inflatestream_object_clone_obj(zval *object TSRML
 #define http_inflatestream_object_free(o) _http_inflatestream_object_free((o) TSRMLS_CC)
 extern void _http_inflatestream_object_free(zend_object *object TSRMLS_DC);
 
+PHP_METHOD(HttpInflateStream, __construct);
+PHP_METHOD(HttpInflateStream, factory);
 PHP_METHOD(HttpInflateStream, update);
 PHP_METHOD(HttpInflateStream, flush);
 PHP_METHOD(HttpInflateStream, finish);