Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the legacy CryptoAPI codec to adapt to changes in ZipVFS. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
77aac8142e0334e5fe44d53bd15a7c3d |
User & Date: | mistachkin 2015-11-06 20:10:52.478 |
Context
2015-11-06
| ||
20:28 | Stop building the static native binaries by default from the command line. check-in: 60ecc34271 user: mistachkin tags: trunk | |
20:10 | Update the legacy CryptoAPI codec to adapt to changes in ZipVFS. check-in: 77aac8142e user: mistachkin tags: trunk | |
2015-11-02
| ||
18:44 | Update SQLite core library to the 3.9.2 release. check-in: b75a3a7751 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Interop/src/win/crypt.c.
︙ | ︙ | |||
391 392 393 394 395 396 397 | sqlite3PagerPagecount(p, &count); nPage = (Pgno)count; for(n = 1; n <= nPage; n ++) { if (n == nSkip) continue; | | | 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | sqlite3PagerPagecount(p, &count); nPage = (Pgno)count; for(n = 1; n <= nPage; n ++) { if (n == nSkip) continue; rc = INTEROP_CODEC_GET_PAGER(p, n, &pPage); if(!rc) { rc = sqlite3PagerWrite(pPage); sqlite3PagerUnref(pPage); } } } |
︙ | ︙ |
Changes to SQLite.Interop/src/win/interop.c.
︙ | ︙ | |||
30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #undef COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE #include "../contrib/extension-functions.c" extern int RegisterExtensionFunctions(sqlite3 *db); #endif #if defined(SQLITE_OS_WIN) #if defined(INTEROP_CODEC) && !defined(INTEROP_INCLUDE_SEE) #include "crypt.c" #endif #include "interop.h" #define INTEROP_DEBUG_NONE (0x0000) #define INTEROP_DEBUG_CLOSE (0x0001) | > > > > > | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #undef COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE #include "../contrib/extension-functions.c" extern int RegisterExtensionFunctions(sqlite3 *db); #endif #if defined(SQLITE_OS_WIN) #if defined(INTEROP_CODEC) && !defined(INTEROP_INCLUDE_SEE) #ifdef SQLITE_ENABLE_ZIPVFS #define INTEROP_CODEC_GET_PAGER(a,b,c) sqlite3PagerGet(a,b,c,0) #else #define INTEROP_CODEC_GET_PAGER(a,b,c) sqlite3PagerGet(a,b,c) #endif #include "crypt.c" #endif #include "interop.h" #define INTEROP_DEBUG_NONE (0x0000) #define INTEROP_DEBUG_CLOSE (0x0001) |
︙ | ︙ |