From: Dmitry Stogov Date: Thu, 5 Oct 2006 08:08:57 +0000 (+0000) Subject: Allow future extensibility without binary compatibility break X-Git-Tag: php-5.2.0RC5~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff3dfa94dd0688f78233030d14076769ddf7e3d0;p=php Allow future extensibility without binary compatibility break --- diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index 70670d1f17..9be4342348 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -194,6 +194,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);