diff options
Diffstat (limited to '')
| -rw-r--r-- | c/loadable-ext-sqlite3ext.h | 433 |
1 files changed, 433 insertions, 0 deletions
diff --git a/c/loadable-ext-sqlite3ext.h b/c/loadable-ext-sqlite3ext.h new file mode 100644 index 0000000..0850553 --- /dev/null +++ b/c/loadable-ext-sqlite3ext.h | |||
| @@ -0,0 +1,433 @@ | |||
| 1 | /* | ||
| 2 | ** 2006 June 7 | ||
| 3 | ** | ||
| 4 | ** The author disclaims copyright to this source code. In place of | ||
| 5 | ** a legal notice, here is a blessing: | ||
| 6 | ** | ||
| 7 | ** May you do good and not evil. | ||
| 8 | ** May you find forgiveness for yourself and forgive others. | ||
| 9 | ** May you share freely, never taking more than you give. | ||
| 10 | ** | ||
| 11 | ************************************************************************* | ||
| 12 | ** This header file defines the SQLite interface for use by | ||
| 13 | ** shared libraries that want to be imported as extensions into | ||
| 14 | ** an SQLite instance. Shared libraries that intend to be loaded | ||
| 15 | ** as extensions by SQLite should #include this file instead of | ||
| 16 | ** sqlite3.h. | ||
| 17 | */ | ||
| 18 | #ifndef SQLITE3EXT_H | ||
| 19 | #define SQLITE3EXT_H | ||
| 20 | #include "loadable-ext-sqlite3.h" | ||
| 21 | |||
| 22 | /* | ||
| 23 | ** The following structure holds pointers to all of the SQLite API | ||
| 24 | ** routines. | ||
| 25 | ** | ||
| 26 | ** WARNING: In order to maintain backwards compatibility, add new | ||
| 27 | ** interfaces to the end of this structure only. If you insert new | ||
| 28 | ** interfaces in the middle of this structure, then older different | ||
| 29 | ** versions of SQLite will not be able to load each other's shared | ||
| 30 | ** libraries! | ||
| 31 | */ | ||
| 32 | struct sqlite3_api_routines { | ||
| 33 | void * (*aggregate_context)(sqlite3_context*,int nBytes); | ||
| 34 | int (*aggregate_count)(sqlite3_context*); | ||
| 35 | int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*)); | ||
| 36 | int (*bind_double)(sqlite3_stmt*,int,double); | ||
| 37 | int (*bind_int)(sqlite3_stmt*,int,int); | ||
| 38 | int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64); | ||
| 39 | int (*bind_null)(sqlite3_stmt*,int); | ||
| 40 | int (*bind_parameter_count)(sqlite3_stmt*); | ||
| 41 | int (*bind_parameter_index)(sqlite3_stmt*,const char*zName); | ||
| 42 | const char * (*bind_parameter_name)(sqlite3_stmt*,int); | ||
| 43 | int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*)); | ||
| 44 | int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*)); | ||
| 45 | int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*); | ||
| 46 | int (*busy_handler)(sqlite3*,int(*)(void*,int),void*); | ||
| 47 | int (*busy_timeout)(sqlite3*,int ms); | ||
| 48 | int (*changes)(sqlite3*); | ||
| 49 | int (*close)(sqlite3*); | ||
| 50 | int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*, | ||
| 51 | int eTextRep,const char*)); | ||
| 52 | int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*, | ||
| 53 | int eTextRep,const void*)); | ||
| 54 | const void * (*column_blob)(sqlite3_stmt*,int iCol); | ||
| 55 | int (*column_bytes)(sqlite3_stmt*,int iCol); | ||
| 56 | int (*column_bytes16)(sqlite3_stmt*,int iCol); | ||
| 57 | int (*column_count)(sqlite3_stmt*pStmt); | ||
| 58 | const char * (*column_database_name)(sqlite3_stmt*,int); | ||
| 59 | const void * (*column_database_name16)(sqlite3_stmt*,int); | ||
| 60 | const char * (*column_decltype)(sqlite3_stmt*,int i); | ||
| 61 | const void * (*column_decltype16)(sqlite3_stmt*,int); | ||
| 62 | double (*column_double)(sqlite3_stmt*,int iCol); | ||
| 63 | int (*column_int)(sqlite3_stmt*,int iCol); | ||
| 64 | sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol); | ||
| 65 | const char * (*column_name)(sqlite3_stmt*,int); | ||
| 66 | const void * (*column_name16)(sqlite3_stmt*,int); | ||
| 67 | const char * (*column_origin_name)(sqlite3_stmt*,int); | ||
| 68 | const void * (*column_origin_name16)(sqlite3_stmt*,int); | ||
| 69 | const char * (*column_table_name)(sqlite3_stmt*,int); | ||
| 70 | const void * (*column_table_name16)(sqlite3_stmt*,int); | ||
| 71 | const unsigned char * (*column_text)(sqlite3_stmt*,int iCol); | ||
| 72 | const void * (*column_text16)(sqlite3_stmt*,int iCol); | ||
| 73 | int (*column_type)(sqlite3_stmt*,int iCol); | ||
| 74 | sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol); | ||
| 75 | void * (*commit_hook)(sqlite3*,int(*)(void*),void*); | ||
| 76 | int (*complete)(const char*sql); | ||
| 77 | int (*complete16)(const void*sql); | ||
| 78 | int (*create_collation)(sqlite3*,const char*,int,void*, | ||
| 79 | int(*)(void*,int,const void*,int,const void*)); | ||
| 80 | int (*create_collation16)(sqlite3*,const void*,int,void*, | ||
| 81 | int(*)(void*,int,const void*,int,const void*)); | ||
| 82 | int (*create_function)(sqlite3*,const char*,int,int,void*, | ||
| 83 | void (*xFunc)(sqlite3_context*,int,sqlite3_value**), | ||
| 84 | void (*xStep)(sqlite3_context*,int,sqlite3_value**), | ||
| 85 | void (*xFinal)(sqlite3_context*)); | ||
| 86 | int (*create_function16)(sqlite3*,const void*,int,int,void*, | ||
| 87 | void (*xFunc)(sqlite3_context*,int,sqlite3_value**), | ||
| 88 | void (*xStep)(sqlite3_context*,int,sqlite3_value**), | ||
| 89 | void (*xFinal)(sqlite3_context*)); | ||
| 90 | int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*); | ||
| 91 | int (*data_count)(sqlite3_stmt*pStmt); | ||
| 92 | sqlite3 * (*db_handle)(sqlite3_stmt*); | ||
| 93 | int (*declare_vtab)(sqlite3*,const char*); | ||
| 94 | int (*enable_shared_cache)(int); | ||
| 95 | int (*errcode)(sqlite3*db); | ||
| 96 | const char * (*errmsg)(sqlite3*); | ||
| 97 | const void * (*errmsg16)(sqlite3*); | ||
| 98 | int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**); | ||
| 99 | int (*expired)(sqlite3_stmt*); | ||
| 100 | int (*finalize)(sqlite3_stmt*pStmt); | ||
| 101 | void (*free)(void*); | ||
| 102 | void (*free_table)(char**result); | ||
| 103 | int (*get_autocommit)(sqlite3*); | ||
| 104 | void * (*get_auxdata)(sqlite3_context*,int); | ||
| 105 | int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**); | ||
| 106 | int (*global_recover)(void); | ||
| 107 | void (*interruptx)(sqlite3*); | ||
| 108 | sqlite_int64 (*last_insert_rowid)(sqlite3*); | ||
| 109 | const char * (*libversion)(void); | ||
| 110 | int (*libversion_number)(void); | ||
| 111 | void *(*malloc)(int); | ||
| 112 | char * (*mprintf)(const char*,...); | ||
| 113 | int (*open)(const char*,sqlite3**); | ||
| 114 | int (*open16)(const void*,sqlite3**); | ||
| 115 | int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); | ||
| 116 | int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); | ||
| 117 | void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*); | ||
| 118 | void (*progress_handler)(sqlite3*,int,int(*)(void*),void*); | ||
| 119 | void *(*realloc)(void*,int); | ||
| 120 | int (*reset)(sqlite3_stmt*pStmt); | ||
| 121 | void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*)); | ||
| 122 | void (*result_double)(sqlite3_context*,double); | ||
| 123 | void (*result_error)(sqlite3_context*,const char*,int); | ||
| 124 | void (*result_error16)(sqlite3_context*,const void*,int); | ||
| 125 | void (*result_int)(sqlite3_context*,int); | ||
| 126 | void (*result_int64)(sqlite3_context*,sqlite_int64); | ||
| 127 | void (*result_null)(sqlite3_context*); | ||
| 128 | void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*)); | ||
| 129 | void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*)); | ||
| 130 | void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*)); | ||
| 131 | void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*)); | ||
| 132 | void (*result_value)(sqlite3_context*,sqlite3_value*); | ||
| 133 | void * (*rollback_hook)(sqlite3*,void(*)(void*),void*); | ||
| 134 | int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*, | ||
| 135 | const char*,const char*),void*); | ||
| 136 | void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*)); | ||
| 137 | char * (*xsnprintf)(int,char*,const char*,...); | ||
| 138 | int (*step)(sqlite3_stmt*); | ||
| 139 | int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*, | ||
| 140 | char const**,char const**,int*,int*,int*); | ||
| 141 | void (*thread_cleanup)(void); | ||
| 142 | int (*total_changes)(sqlite3*); | ||
| 143 | void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*); | ||
| 144 | int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*); | ||
| 145 | void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*, | ||
| 146 | sqlite_int64),void*); | ||
| 147 | void * (*user_data)(sqlite3_context*); | ||
| 148 | const void * (*value_blob)(sqlite3_value*); | ||
| 149 | int (*value_bytes)(sqlite3_value*); | ||
| 150 | int (*value_bytes16)(sqlite3_value*); | ||
| 151 | double (*value_double)(sqlite3_value*); | ||
| 152 | int (*value_int)(sqlite3_value*); | ||
| 153 | sqlite_int64 (*value_int64)(sqlite3_value*); | ||
| 154 | int (*value_numeric_type)(sqlite3_value*); | ||
| 155 | const unsigned char * (*value_text)(sqlite3_value*); | ||
| 156 | const void * (*value_text16)(sqlite3_value*); | ||
| 157 | const void * (*value_text16be)(sqlite3_value*); | ||
| 158 | const void * (*value_text16le)(sqlite3_value*); | ||
| 159 | int (*value_type)(sqlite3_value*); | ||
| 160 | char *(*vmprintf)(const char*,va_list); | ||
| 161 | /* Added ??? */ | ||
| 162 | int (*overload_function)(sqlite3*, const char *zFuncName, int nArg); | ||
| 163 | /* Added by 3.3.13 */ | ||
| 164 | int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); | ||
| 165 | int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); | ||
| 166 | int (*clear_bindings)(sqlite3_stmt*); | ||
| 167 | /* Added by 3.4.1 */ | ||
| 168 | int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*, | ||
| 169 | void (*xDestroy)(void *)); | ||
| 170 | /* Added by 3.5.0 */ | ||
| 171 | int (*bind_zeroblob)(sqlite3_stmt*,int,int); | ||
| 172 | int (*blob_bytes)(sqlite3_blob*); | ||
| 173 | int (*blob_close)(sqlite3_blob*); | ||
| 174 | int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64, | ||
| 175 | int,sqlite3_blob**); | ||
| 176 | int (*blob_read)(sqlite3_blob*,void*,int,int); | ||
| 177 | int (*blob_write)(sqlite3_blob*,const void*,int,int); | ||
| 178 | int (*create_collation_v2)(sqlite3*,const char*,int,void*, | ||
| 179 | int(*)(void*,int,const void*,int,const void*), | ||
| 180 | void(*)(void*)); | ||
| 181 | int (*file_control)(sqlite3*,const char*,int,void*); | ||
| 182 | sqlite3_int64 (*memory_highwater)(int); | ||
| 183 | sqlite3_int64 (*memory_used)(void); | ||
| 184 | sqlite3_mutex *(*mutex_alloc)(int); | ||
| 185 | void (*mutex_enter)(sqlite3_mutex*); | ||
| 186 | void (*mutex_free)(sqlite3_mutex*); | ||
| 187 | void (*mutex_leave)(sqlite3_mutex*); | ||
| 188 | int (*mutex_try)(sqlite3_mutex*); | ||
| 189 | int (*open_v2)(const char*,sqlite3**,int,const char*); | ||
| 190 | int (*release_memory)(int); | ||
| 191 | void (*result_error_nomem)(sqlite3_context*); | ||
| 192 | void (*result_error_toobig)(sqlite3_context*); | ||
| 193 | int (*sleep)(int); | ||
| 194 | void (*soft_heap_limit)(int); | ||
| 195 | sqlite3_vfs *(*vfs_find)(const char*); | ||
| 196 | int (*vfs_register)(sqlite3_vfs*,int); | ||
| 197 | int (*vfs_unregister)(sqlite3_vfs*); | ||
| 198 | int (*xthreadsafe)(void); | ||
| 199 | void (*result_zeroblob)(sqlite3_context*,int); | ||
| 200 | void (*result_error_code)(sqlite3_context*,int); | ||
| 201 | int (*test_control)(int, ...); | ||
| 202 | void (*randomness)(int,void*); | ||
| 203 | sqlite3 *(*context_db_handle)(sqlite3_context*); | ||
| 204 | int (*extended_result_codes)(sqlite3*,int); | ||
| 205 | int (*limit)(sqlite3*,int,int); | ||
| 206 | sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*); | ||
| 207 | const char *(*sql)(sqlite3_stmt*); | ||
| 208 | int (*status)(int,int*,int*,int); | ||
| 209 | int (*backup_finish)(sqlite3_backup*); | ||
| 210 | sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*); | ||
| 211 | int (*backup_pagecount)(sqlite3_backup*); | ||
| 212 | int (*backup_remaining)(sqlite3_backup*); | ||
| 213 | int (*backup_step)(sqlite3_backup*,int); | ||
| 214 | const char *(*compileoption_get)(int); | ||
| 215 | int (*compileoption_used)(const char*); | ||
| 216 | int (*create_function_v2)(sqlite3*,const char*,int,int,void*, | ||
| 217 | void (*xFunc)(sqlite3_context*,int,sqlite3_value**), | ||
| 218 | void (*xStep)(sqlite3_context*,int,sqlite3_value**), | ||
| 219 | void (*xFinal)(sqlite3_context*), | ||
| 220 | void(*xDestroy)(void*)); | ||
| 221 | int (*db_config)(sqlite3*,int,...); | ||
| 222 | sqlite3_mutex *(*db_mutex)(sqlite3*); | ||
| 223 | int (*db_status)(sqlite3*,int,int*,int*,int); | ||
| 224 | int (*extended_errcode)(sqlite3*); | ||
| 225 | void (*log)(int,const char*,...); | ||
| 226 | sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64); | ||
| 227 | const char *(*sourceid)(void); | ||
| 228 | int (*stmt_status)(sqlite3_stmt*,int,int); | ||
| 229 | int (*strnicmp)(const char*,const char*,int); | ||
| 230 | int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*); | ||
| 231 | int (*wal_autocheckpoint)(sqlite3*,int); | ||
| 232 | int (*wal_checkpoint)(sqlite3*,const char*); | ||
| 233 | void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*); | ||
| 234 | int (*blob_reopen)(sqlite3_blob*,sqlite3_int64); | ||
| 235 | int (*vtab_config)(sqlite3*,int op,...); | ||
| 236 | int (*vtab_on_conflict)(sqlite3*); | ||
| 237 | /* Version 3.7.16 and later */ | ||
| 238 | int (*close_v2)(sqlite3*); | ||
| 239 | const char *(*db_filename)(sqlite3*,const char*); | ||
| 240 | int (*db_readonly)(sqlite3*,const char*); | ||
| 241 | int (*db_release_memory)(sqlite3*); | ||
| 242 | const char *(*errstr)(int); | ||
| 243 | int (*stmt_busy)(sqlite3_stmt*); | ||
| 244 | int (*stmt_readonly)(sqlite3_stmt*); | ||
| 245 | int (*stricmp)(const char*,const char*); | ||
| 246 | int (*uri_boolean)(const char*,const char*,int); | ||
| 247 | sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64); | ||
| 248 | const char *(*uri_parameter)(const char*,const char*); | ||
| 249 | char *(*xvsnprintf)(int,char*,const char*,va_list); | ||
| 250 | int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*); | ||
| 251 | /* Version 3.8.7 and later */ | ||
| 252 | int (*auto_extension)(void(*)(void)); | ||
| 253 | int (*bind_blob64)(sqlite3_stmt*,int,const void*,sqlite3_uint64, | ||
| 254 | void(*)(void*)); | ||
| 255 | int (*bind_text64)(sqlite3_stmt*,int,const char*,sqlite3_uint64, | ||
| 256 | void(*)(void*),unsigned char); | ||
| 257 | int (*cancel_auto_extension)(void(*)(void)); | ||
| 258 | int (*load_extension)(sqlite3*,const char*,const char*,char**); | ||
| 259 | void *(*malloc64)(sqlite3_uint64); | ||
| 260 | sqlite3_uint64 (*msize)(void*); | ||
| 261 | void *(*realloc64)(void*,sqlite3_uint64); | ||
| 262 | void (*reset_auto_extension)(void); | ||
| 263 | void (*result_blob64)(sqlite3_context*,const void*,sqlite3_uint64, | ||
| 264 | void(*)(void*)); | ||
| 265 | void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64, | ||
| 266 | void(*)(void*), unsigned char); | ||
| 267 | int (*strglob)(const char*,const char*); | ||
| 268 | /* Version 3.8.11 and later */ | ||
| 269 | sqlite3_value *(*value_dup)(const sqlite3_value*); | ||
| 270 | void (*value_free)(sqlite3_value*); | ||
| 271 | int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64); | ||
| 272 | int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64); | ||
| 273 | /* Version 3.9.0 and later */ | ||
| 274 | unsigned int (*value_subtype)(sqlite3_value*); | ||
| 275 | void (*result_subtype)(sqlite3_context*,unsigned int); | ||
| 276 | /* Version 3.10.0 and later */ | ||
| 277 | int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int); | ||
| 278 | int (*strlike)(const char*,const char*,unsigned int); | ||
| 279 | int (*db_cacheflush)(sqlite3*); | ||
| 280 | /* Version 3.12.0 and later */ | ||
| 281 | int (*system_errno)(sqlite3*); | ||
| 282 | /* Version 3.14.0 and later */ | ||
| 283 | int (*trace_v2)(sqlite3*,unsigned,int(*)(unsigned,void*,void*,void*),void*); | ||
| 284 | char *(*expanded_sql)(sqlite3_stmt*); | ||
| 285 | /* Version 3.18.0 and later */ | ||
| 286 | void (*set_last_insert_rowid)(sqlite3*,sqlite3_int64); | ||
| 287 | /* Version 3.20.0 and later */ | ||
| 288 | int (*prepare_v3)(sqlite3*,const char*,int,unsigned int, | ||
| 289 | sqlite3_stmt**,const char**); | ||
| 290 | int (*prepare16_v3)(sqlite3*,const void*,int,unsigned int, | ||
| 291 | sqlite3_stmt**,const void**); | ||
| 292 | int (*bind_pointer)(sqlite3_stmt*,int,void*,const char*,void(*)(void*)); | ||
| 293 | void (*result_pointer)(sqlite3_context*,void*,const char*,void(*)(void*)); | ||
| 294 | void *(*value_pointer)(sqlite3_value*,const char*); | ||
| 295 | int (*vtab_nochange)(sqlite3_context*); | ||
| 296 | int (*value_nochange)(sqlite3_value*); | ||
| 297 | const char *(*vtab_collation)(sqlite3_index_info*,int); | ||
| 298 | /* Version 3.24.0 and later */ | ||
| 299 | int (*keyword_count)(void); | ||
| 300 | int (*keyword_name)(int,const char**,int*); | ||
| 301 | int (*keyword_check)(const char*,int); | ||
| 302 | sqlite3_str *(*str_new)(sqlite3*); | ||
| 303 | char *(*str_finish)(sqlite3_str*); | ||
| 304 | void (*str_appendf)(sqlite3_str*, const char *zFormat, ...); | ||
| 305 | void (*str_vappendf)(sqlite3_str*, const char *zFormat, va_list); | ||
| 306 | void (*str_append)(sqlite3_str*, const char *zIn, int N); | ||
| 307 | void (*str_appendall)(sqlite3_str*, const char *zIn); | ||
| 308 | void (*str_appendchar)(sqlite3_str*, int N, char C); | ||
| 309 | void (*str_reset)(sqlite3_str*); | ||
| 310 | int (*str_errcode)(sqlite3_str*); | ||
| 311 | int (*str_length)(sqlite3_str*); | ||
| 312 | char *(*str_value)(sqlite3_str*); | ||
| 313 | /* Version 3.25.0 and later */ | ||
| 314 | int (*create_window_function)(sqlite3*,const char*,int,int,void*, | ||
| 315 | void (*xStep)(sqlite3_context*,int,sqlite3_value**), | ||
| 316 | void (*xFinal)(sqlite3_context*), | ||
| 317 | void (*xValue)(sqlite3_context*), | ||
| 318 | void (*xInv)(sqlite3_context*,int,sqlite3_value**), | ||
| 319 | void(*xDestroy)(void*)); | ||
| 320 | /* Version 3.26.0 and later */ | ||
| 321 | const char *(*normalized_sql)(sqlite3_stmt*); | ||
| 322 | /* Version 3.28.0 and later */ | ||
| 323 | int (*stmt_isexplain)(sqlite3_stmt*); | ||
| 324 | int (*value_frombind)(sqlite3_value*); | ||
| 325 | /* Version 3.30.0 and later */ | ||
| 326 | int (*drop_modules)(sqlite3*,const char**); | ||
| 327 | /* Version 3.31.0 and later */ | ||
| 328 | sqlite3_int64 (*hard_heap_limit64)(sqlite3_int64); | ||
| 329 | const char *(*uri_key)(const char*,int); | ||
| 330 | const char *(*filename_database)(const char*); | ||
| 331 | const char *(*filename_journal)(const char*); | ||
| 332 | const char *(*filename_wal)(const char*); | ||
| 333 | /* Version 3.32.0 and later */ | ||
| 334 | char *(*create_filename)(const char*,const char*,const char*, | ||
| 335 | int,const char**); | ||
| 336 | void (*free_filename)(char*); | ||
| 337 | sqlite3_file *(*database_file_object)(const char*); | ||
| 338 | /* Version 3.34.0 and later */ | ||
| 339 | int (*txn_state)(sqlite3*,const char*); | ||
| 340 | /* Version 3.36.1 and later */ | ||
| 341 | sqlite3_int64 (*changes64)(sqlite3*); | ||
| 342 | sqlite3_int64 (*total_changes64)(sqlite3*); | ||
| 343 | /* Version 3.37.0 and later */ | ||
| 344 | int (*autovacuum_pages)(sqlite3*, | ||
| 345 | unsigned int(*)(void*,const char*,unsigned int,unsigned int,unsigned int), | ||
| 346 | void*, void(*)(void*)); | ||
| 347 | /* Version 3.38.0 and later */ | ||
| 348 | int (*error_offset)(sqlite3*); | ||
| 349 | int (*vtab_rhs_value)(sqlite3_index_info*,int,sqlite3_value**); | ||
| 350 | int (*vtab_distinct)(sqlite3_index_info*); | ||
| 351 | int (*vtab_in)(sqlite3_index_info*,int,int); | ||
| 352 | int (*vtab_in_first)(sqlite3_value*,sqlite3_value**); | ||
| 353 | int (*vtab_in_next)(sqlite3_value*,sqlite3_value**); | ||
| 354 | /* Version 3.39.0 and later */ | ||
| 355 | int (*deserialize)(sqlite3*,const char*,unsigned char*, | ||
| 356 | sqlite3_int64,sqlite3_int64,unsigned); | ||
| 357 | unsigned char *(*serialize)(sqlite3*,const char *,sqlite3_int64*, | ||
| 358 | unsigned int); | ||
| 359 | const char *(*db_name)(sqlite3*,int); | ||
| 360 | }; | ||
| 361 | |||
| 362 | /* | ||
| 363 | ** This is the function signature used for all extension entry points. It | ||
| 364 | ** is also defined in the file "loadext.c". | ||
| 365 | */ | ||
| 366 | typedef int (*sqlite3_loadext_entry)( | ||
| 367 | sqlite3 *db, /* Handle to the database. */ | ||
| 368 | char **pzErrMsg, /* Used to set error string on failure. */ | ||
| 369 | const sqlite3_api_routines *pThunk /* Extension API function pointers. */ | ||
| 370 | ); | ||
| 371 | |||
| 372 | /* | ||
| 373 | ** The following macros redefine the API routines so that they are | ||
| 374 | ** redirected through the global sqlite3_api structure. | ||
| 375 | ** | ||
| 376 | ** This header file is also used by the loadext.c source file | ||
| 377 | ** (part of the main SQLite library - not an extension) so that | ||
| 378 | ** it can get access to the sqlite3_api_routines structure | ||
| 379 | ** definition. But the main library does not want to redefine | ||
| 380 | ** the API. So the redefinition macros are only valid if the | ||
| 381 | ** SQLITE_CORE macros is undefined. | ||
| 382 | */ | ||
| 383 | #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) | ||
| 384 | #ifndef SQLITE_OMIT_DEPRECATED | ||
| 385 | #endif | ||
| 386 | #ifndef SQLITE_OMIT_DEPRECATED | ||
| 387 | #endif | ||
| 388 | #ifndef SQLITE_OMIT_DEPRECATED | ||
| 389 | #endif | ||
| 390 | #ifndef SQLITE_OMIT_DEPRECATED | ||
| 391 | #endif | ||
| 392 | /* Version 3.7.16 and later */ | ||
| 393 | /* Version 3.8.7 and later */ | ||
| 394 | /* Version 3.8.11 and later */ | ||
| 395 | /* Version 3.9.0 and later */ | ||
| 396 | /* Version 3.10.0 and later */ | ||
| 397 | /* Version 3.12.0 and later */ | ||
| 398 | /* Version 3.14.0 and later */ | ||
| 399 | /* Version 3.18.0 and later */ | ||
| 400 | /* Version 3.20.0 and later */ | ||
| 401 | /* Version 3.22.0 and later */ | ||
| 402 | /* Version 3.24.0 and later */ | ||
| 403 | /* Version 3.25.0 and later */ | ||
| 404 | /* Version 3.26.0 and later */ | ||
| 405 | /* Version 3.28.0 and later */ | ||
| 406 | /* Version 3.30.0 and later */ | ||
| 407 | /* Version 3.31.0 and later */ | ||
| 408 | /* Version 3.32.0 and later */ | ||
| 409 | /* Version 3.34.0 and later */ | ||
| 410 | /* Version 3.36.1 and later */ | ||
| 411 | /* Version 3.37.0 and later */ | ||
| 412 | /* Version 3.38.0 and later */ | ||
| 413 | /* Version 3.39.0 and later */ | ||
| 414 | #ifndef SQLITE_OMIT_DESERIALIZE | ||
| 415 | #endif | ||
| 416 | #endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */ | ||
| 417 | |||
| 418 | #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) | ||
| 419 | /* This case when the file really is being compiled as a loadable | ||
| 420 | ** extension */ | ||
| 421 | # define SQLITE_EXTENSION_INIT1 const sqlite3_api_routines *sqlite3_api=0; | ||
| 422 | # define SQLITE_EXTENSION_INIT2(v) sqlite3_api=v; | ||
| 423 | # define SQLITE_EXTENSION_INIT3 \ | ||
| 424 | extern const sqlite3_api_routines *sqlite3_api; | ||
| 425 | #else | ||
| 426 | /* This case when the file is being statically linked into the | ||
| 427 | ** application */ | ||
| 428 | # define SQLITE_EXTENSION_INIT1 /*no-op*/ | ||
| 429 | # define SQLITE_EXTENSION_INIT2(v) (void)v; /* unused parameter */ | ||
| 430 | # define SQLITE_EXTENSION_INIT3 /*no-op*/ | ||
| 431 | #endif | ||
| 432 | |||
| 433 | #endif /* SQLITE3EXT_H */ | ||