mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Upgrade SQLite from 3.8.8.2 to 3.8.11.1
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -267,6 +267,11 @@ struct sqlite3_api_routines {
|
|||||||
void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64,
|
void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64,
|
||||||
void(*)(void*), unsigned char);
|
void(*)(void*), unsigned char);
|
||||||
int (*strglob)(const char*,const char*);
|
int (*strglob)(const char*,const char*);
|
||||||
|
/* Version 3.8.11 and later */
|
||||||
|
sqlite3_value *(*value_dup)(const sqlite3_value*);
|
||||||
|
void (*value_free)(sqlite3_value*);
|
||||||
|
int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64);
|
||||||
|
int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64);
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -497,6 +502,11 @@ struct sqlite3_api_routines {
|
|||||||
#define sqlite3_result_blob64 sqlite3_api->result_blob64
|
#define sqlite3_result_blob64 sqlite3_api->result_blob64
|
||||||
#define sqlite3_result_text64 sqlite3_api->result_text64
|
#define sqlite3_result_text64 sqlite3_api->result_text64
|
||||||
#define sqlite3_strglob sqlite3_api->strglob
|
#define sqlite3_strglob sqlite3_api->strglob
|
||||||
|
/* Version 3.8.11 and later */
|
||||||
|
#define sqlite3_value_dup sqlite3_api->value_dup
|
||||||
|
#define sqlite3_value_free sqlite3_api->value_free
|
||||||
|
#define sqlite3_result_zeroblob64 sqlite3_api->result_zeroblob64
|
||||||
|
#define sqlite3_bind_zeroblob64 sqlite3_api->bind_zeroblob64
|
||||||
#endif /* SQLITE_CORE */
|
#endif /* SQLITE_CORE */
|
||||||
|
|
||||||
#ifndef SQLITE_CORE
|
#ifndef SQLITE_CORE
|
||||||
|
|||||||
Reference in New Issue
Block a user