X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_inflatestream_object.h;h=3a090139219e9a09bb9b07afb4eaaba06ca19d8d;hp=0853d041f4bed2ba3414811117b14227f6e59bed;hb=4ff2f45b61907d9b943fa6179c03b54257bdfca5;hpb=32e91737086db53bb1fd9ed9f79d693c43ec459f diff --git a/php_http_inflatestream_object.h b/php_http_inflatestream_object.h index 0853d04..3a09013 100644 --- a/php_http_inflatestream_object.h +++ b/php_http_inflatestream_object.h @@ -6,7 +6,7 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2004-2006, Michael Wallner | + | Copyright (c) 2004-2007, Michael Wallner | +--------------------------------------------------------------------+ */ @@ -14,9 +14,10 @@ #ifndef PHP_HTTP_INFLATESTREAM_OBJECT_H #define PHP_HTTP_INFLATESTREAM_OBJECT_H -#if defined(ZEND_ENGINE_2) && defined(HTTP_HAVE_ZLIB) +#ifdef HTTP_HAVE_ZLIB +#ifdef ZEND_ENGINE_2 -typedef struct { +typedef struct _http_inflatestream_object_t { zend_object zo; http_encoding_stream *stream; } http_inflatestream_object; @@ -35,10 +36,13 @@ 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); +#endif #endif #endif