From: Dmitry Stogov Date: Thu, 5 Oct 2006 08:09:12 +0000 (+0000) Subject: Allow future extensibility without binary compatibility break X-Git-Tag: RELEASE_1_0_0RC1~1411 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=301efee1cff2e02059a65f1ac95419cf97455e62;p=php Allow future extensibility without binary compatibility break --- diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index 1befb7475c..c251bd0ec4 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -205,6 +205,7 @@ typedef struct _zend_mm_mem_handlers { struct _zend_mm_storage { const zend_mm_mem_handlers *handlers; + void *data; }; ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers, size_t block_size, void *params);