diff options
author | Andrey Hristov <andrey@php.net> | 2011-10-12 16:18:02 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2011-10-12 16:18:02 +0000 |
commit | badb5f261092279a2794af63de08125551b4efab (patch) | |
tree | 00f2ab2e6318ac6b450c87c19e453fe40729a859 | |
parent | 31d213930dec5015f8f7a2d37f281d5217c4f051 (diff) | |
download | php-git-badb5f261092279a2794af63de08125551b4efab.tar.gz |
export this existing function
-rw-r--r-- | ext/mysqlnd/mysqlnd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd.h b/ext/mysqlnd/mysqlnd.h index 658b63062b..e4977e90ce 100644 --- a/ext/mysqlnd/mysqlnd.h +++ b/ext/mysqlnd/mysqlnd.h @@ -90,6 +90,9 @@ PHPAPI void ** _mysqlnd_plugin_get_plugin_stmt_data(const MYSQLND_STMT * stmt, u PHPAPI void ** _mysqlnd_plugin_get_plugin_protocol_data(const MYSQLND_PROTOCOL * protocol, unsigned int plugin_id TSRMLS_DC); #define mysqlnd_plugin_get_plugin_protocol_data(p, p_id) _mysqlnd_plugin_get_plugin_protocol_data((p), (p_id) TSRMLS_CC) +PHPAPI void ** _mysqlnd_plugin_get_plugin_net_data(const MYSQLND_NET * net, unsigned int plugin_id TSRMLS_DC); +#define mysqlnd_plugin_get_plugin_net_data(n, p_id) _mysqlnd_plugin_get_plugin_net_data((n), (p_id) TSRMLS_CC) + PHPAPI struct st_mysqlnd_conn_methods * mysqlnd_conn_get_methods(); PHPAPI void mysqlnd_conn_set_methods(struct st_mysqlnd_conn_methods *methods); |