mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Move from directly referencing an aggregated structure to using a
pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage
This commit is contained in:
parent
8eb4386c87
commit
f926a3c07d
26 changed files with 430 additions and 406 deletions
|
@ -13,20 +13,17 @@
|
|||
| license@php.net so we can mail you a copy immediately. |
|
||||
+----------------------------------------------------------------------+
|
||||
| Authors: Andrey Hristov <andrey@mysql.com> |
|
||||
| Georg Richter <georg@mysql.com> |
|
||||
| Ulf Wendel <uwendel@mysql.com> |
|
||||
| Georg Richter <georg@mysql.com> |
|
||||
+----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/* $Id: mysqlnd.c 317989 2011-10-10 20:49:28Z andrey $ */
|
||||
#include "php.h"
|
||||
#include "mysqlnd.h"
|
||||
#include "mysqlnd_wireprotocol.h"
|
||||
#include "mysqlnd_priv.h"
|
||||
#include "mysqlnd_result.h"
|
||||
#include "mysqlnd_statistics.h"
|
||||
#include "mysqlnd_charset.h"
|
||||
#include "mysqlnd_debug.h"
|
||||
#include "mysqlnd_reverse_api.h"
|
||||
|
||||
|
||||
static HashTable mysqlnd_api_ext_ht;
|
||||
|
@ -52,7 +49,7 @@ mysqlnd_reverse_api_end(TSRMLS_D)
|
|||
|
||||
/* {{{ myslqnd_get_api_extensions */
|
||||
PHPAPI HashTable *
|
||||
mysqlnd_reverse_api_get_api_list(TSRLMLS_D)
|
||||
mysqlnd_reverse_api_get_api_list(TSRMLS_D)
|
||||
{
|
||||
return &mysqlnd_api_ext_ht;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue