Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improve integration with ZipVFS. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cd61337179e758ac5cda1b22f7bc9b66 |
User & Date: | mistachkin 2018-12-19 02:07:21.124 |
Context
2018-12-19
| ||
02:25 | Update SQLite core library to the 3.26.0 release. check-in: 5fa49e1bd7 user: mistachkin tags: trunk | |
02:07 | Improve integration with ZipVFS. check-in: cd61337179 user: mistachkin tags: trunk | |
2018-11-06
| ||
00:29 | Update version history docs. check-in: d970797755 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Interop/src/generic/interop.c.
︙ | ︙ | |||
40 41 42 43 44 45 46 47 48 49 50 51 52 53 | #if defined(INTEROP_INCLUDE_SEE) #include "../ext/see.c" #endif #if defined(INTEROP_INCLUDE_ZIPVFS) #include "../ext/zipvfs.c" #include "../ext/algorithms.c" #endif #if defined(INTEROP_EXTENSION_FUNCTIONS) #undef COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE #include "../contrib/extension-functions.c" extern int RegisterExtensionFunctions(sqlite3 *db); | > > > | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #if defined(INTEROP_INCLUDE_SEE) #include "../ext/see.c" #endif #if defined(INTEROP_INCLUDE_ZIPVFS) #include "../ext/zipvfs.c" #if defined(SQLITE_ENABLE_ZIPVFS_VTAB) #include "../ext/zipvfs_vtab.c" #endif #include "../ext/algorithms.c" #endif #if defined(INTEROP_EXTENSION_FUNCTIONS) #undef COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE #include "../contrib/extension-functions.c" extern int RegisterExtensionFunctions(sqlite3 *db); |
︙ | ︙ |