diff options
author | Alex Naidis <alex.naidis@linux.com> | 2016-08-07 15:54:03 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-08-07 15:54:03 +0000 |
commit | 1eded54579607037f5042fa13d8b68028e726cd3 (patch) | |
tree | c964f0db58f4f558705f84606fa77ae2002d1f73 /dist/sqlite3ext.h | |
parent | 1198723109983eb0f434911c126eebb4a1627cd7 (diff) | |
parent | b8aa6ec8f6850ae62e48914e915d6f1c87a719da (diff) |
Merge "sqlite: upgrade to SQLite 3.13.0"
am: b8aa6ec8f6
Change-Id: I73e5505bb2cc6160eefb2420da2cdc00671388b0
Diffstat (limited to 'dist/sqlite3ext.h')
-rw-r--r-- | dist/sqlite3ext.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dist/sqlite3ext.h b/dist/sqlite3ext.h index 017ea30..20a2fcd 100644 --- a/dist/sqlite3ext.h +++ b/dist/sqlite3ext.h @@ -275,6 +275,12 @@ struct sqlite3_api_routines { /* Version 3.9.0 and later */ unsigned int (*value_subtype)(sqlite3_value*); void (*result_subtype)(sqlite3_context*,unsigned int); + /* Version 3.10.0 and later */ + int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int); + int (*strlike)(const char*,const char*,unsigned int); + int (*db_cacheflush)(sqlite3*); + /* Version 3.12.0 and later */ + int (*system_errno)(sqlite3*); }; /* @@ -514,6 +520,12 @@ struct sqlite3_api_routines { /* Version 3.9.0 and later */ #define sqlite3_value_subtype sqlite3_api->value_subtype #define sqlite3_result_subtype sqlite3_api->result_subtype +/* Version 3.10.0 and later */ +#define sqlite3_status64 sqlite3_api->status64 +#define sqlite3_strlike sqlite3_api->strlike +#define sqlite3_db_cacheflush sqlite3_api->db_cacheflush +/* Version 3.12.0 and later */ +#define sqlite3_system_errno sqlite3_api->system_errno #endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */ #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) |