Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the legacy CryptoAPI codec to adapt to upcoming changes in the SQLite core library. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6da06906eddd703e2f44e3893acd68dc |
User & Date: | mistachkin 2015-11-06 20:52:49.451 |
Context
2015-12-01
| ||
19:03 | Update the MSVCRT runtimes for VS 2015 in externals to 'Update 1'. check-in: 7866eaefcc user: mistachkin tags: trunk | |
18:58 | Update the MSVCRT runtimes for VS 2015 in externals to 'Update 1', part 1. check-in: 664a055dcb user: mistachkin tags: vs2015update1 | |
2015-11-06
| ||
20:52 | Update the legacy CryptoAPI codec to adapt to upcoming changes in the SQLite core library. check-in: 6da06906ed user: mistachkin tags: trunk | |
20:28 | Stop building the static native binaries by default from the command line. check-in: 60ecc34271 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Interop/src/win/interop.c.
︙ | ︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #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 | > > | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | #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) #elif SQLITE_VERSION_NUMBER > 3009002 #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 |
︙ | ︙ |