Tsukada
ttsuk****@users*****
2002年 5月 23日 (木) 05:14:18 JST
ttsukada 02/05/23 05:14:18 Modified: ext/mbstring php_mb_buf.h Log: MBFL update Revision Changes Path 1.2 +12 -0 php4/ext/mbstring/php_mb_buf.h Index: php_mb_buf.h =================================================================== RCS file: /cvsroot/php-i18n/php4/ext/mbstring/php_mb_buf.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- php_mb_buf.h 20 May 2002 11:15:54 -0000 1.1 +++ php_mb_buf.h 22 May 2002 20:14:17 -0000 1.2 @@ -11,6 +11,18 @@ #define PHP_MB_BUF_ALLOC_SIZE 16 #define PHP_MB_BUF_LARGE_BORDER 512 +typedef struct _php_mb_buf { + void *global_resource; + int *value; + int length; + int size; + int realloc; + int refcount; + char memory_type_value; + char memory_type_self; +} php_mb_buf; + + PHPAPI php_mb_buf * _php_mb_buf_create(int persist TSRMLS_DC); PHPAPI void _php_mb_buf_free(php_mb_buf *buffer TSRMLS_DC); PHPAPI void php_mb_buf_reset(php_mb_buf *buffer);