diff options
author | Andrey Hristov <andrey@php.net> | 2010-09-28 14:36:18 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-09-28 14:36:18 +0000 |
commit | 22d73027d01a34a41eb0a39eacc9b90c0f5ae30c (patch) | |
tree | 5ae85212754eb8100e096da5f4f7658f037f4214 /ext/mysqlnd/mysqlnd_structs.h | |
parent | 6bae8fbd9cb6f7a0ee20f9e92ca40d909b72b251 (diff) | |
download | php-git-22d73027d01a34a41eb0a39eacc9b90c0f5ae30c.tar.gz |
add another hook, maybe the last one, for MYSQLND_STMT, which
was missed before
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_structs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h index 33a99ce437..12ce11deb3 100644 --- a/ext/mysqlnd/mysqlnd_structs.h +++ b/ext/mysqlnd/mysqlnd_structs.h @@ -627,6 +627,7 @@ typedef void (*func_mysqlnd_stmt__free_result_bind)(MYSQLND_STMT * const stm typedef unsigned int (*func_mysqlnd_stmt__server_status)(const MYSQLND_STMT * const stmt TSRMLS_DC); typedef enum_func_status (*func_mysqlnd_stmt__generate_execute_request)(MYSQLND_STMT * const s, zend_uchar ** request, size_t *request_len, zend_bool * free_buffer TSRMLS_DC); typedef enum_func_status (*func_mysqlnd_stmt__parse_execute_response)(MYSQLND_STMT * const s TSRMLS_DC); +typedef void (*func_mysqlnd_stmt__free_stmt_content)(MYSQLND_STMT * const s TSRMLS_DC); struct st_mysqlnd_stmt_methods { @@ -678,6 +679,8 @@ struct st_mysqlnd_stmt_methods func_mysqlnd_stmt__generate_execute_request generate_execute_request; func_mysqlnd_stmt__parse_execute_response parse_execute_response; + + func_mysqlnd_stmt__free_stmt_content free_stmt_content; }; |