diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2019-11-03 01:25:46 +0000 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2019-11-03 01:25:46 +0000 |
| commit | f1b328b32fb7ff88482f16f3af51d197252d322a (patch) | |
| tree | de3d8cfe906ebd98f77e576bae13028660303464 /contrib/sqlite3/sqlite3ext.h | |
| parent | 45577133ef0e8dc6552366ec74865f98703a8752 (diff) | |
| parent | f123a1cc3a3542b7d1666e0948db581e800c2a82 (diff) | |
Notes
Diffstat (limited to 'contrib/sqlite3/sqlite3ext.h')
| -rw-r--r-- | contrib/sqlite3/sqlite3ext.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/sqlite3/sqlite3ext.h b/contrib/sqlite3/sqlite3ext.h index 088148b93660..416ac94231a3 100644 --- a/contrib/sqlite3/sqlite3ext.h +++ b/contrib/sqlite3/sqlite3ext.h @@ -322,6 +322,8 @@ struct sqlite3_api_routines { /* Version 3.28.0 and later */ int (*stmt_isexplain)(sqlite3_stmt*); int (*value_frombind)(sqlite3_value*); + /* Version 3.30.0 and later */ + int (*drop_modules)(sqlite3*,const char**); }; /* @@ -614,6 +616,8 @@ typedef int (*sqlite3_loadext_entry)( /* Version 3.28.0 and later */ #define sqlite3_stmt_isexplain sqlite3_api->isexplain #define sqlite3_value_frombind sqlite3_api->frombind +/* Version 3.30.0 and later */ +#define sqlite3_drop_modules sqlite3_api->drop_modules #endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */ #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) |
