diff options
author | Ondřej Surý <ondrej@sury.org> | 2012-02-03 11:02:43 +0100 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2012-02-03 11:02:43 +0100 |
commit | 5292df2401c781de56fd04835c18e11162152626 (patch) | |
tree | 34d9215e87887fb4f97b051ac3fa239d6cf4ee89 /ext/pdo_sqlite/php_pdo_sqlite_int.h | |
parent | 96fb2ff5760132a915766f1d9ec7c63001feacd8 (diff) | |
download | php-5292df2401c781de56fd04835c18e11162152626.tar.gz |
Imported Upstream version 5.4.0~rc7upstream/5.4.0_rc7
Diffstat (limited to 'ext/pdo_sqlite/php_pdo_sqlite_int.h')
-rw-r--r-- | ext/pdo_sqlite/php_pdo_sqlite_int.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/php_pdo_sqlite_int.h b/ext/pdo_sqlite/php_pdo_sqlite_int.h index 319d08325..9b4e0b813 100644 --- a/ext/pdo_sqlite/php_pdo_sqlite_int.h +++ b/ext/pdo_sqlite/php_pdo_sqlite_int.h @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_pdo_sqlite_int.h 321634 2012-01-01 13:15:04Z felipe $ */ +/* $Id: php_pdo_sqlite_int.h 322916 2012-01-29 04:22:23Z rasmus $ */ #ifndef PHP_PDO_SQLITE_INT_H #define PHP_PDO_SQLITE_INT_H @@ -46,10 +46,19 @@ struct pdo_sqlite_func { struct pdo_sqlite_fci afunc, astep, afini; }; +struct pdo_sqlite_collation { + struct pdo_sqlite_collation *next; + + const char *name; + zval *callback; + struct pdo_sqlite_fci fc; +}; + typedef struct { sqlite3 *db; pdo_sqlite_error_info einfo; struct pdo_sqlite_func *funcs; + struct pdo_sqlite_collation *collations; } pdo_sqlite_db_handle; typedef struct { |